Changeset 84983 in webkit


Ignore:
Timestamp:
Apr 26, 2011 4:57:33 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-26 Christian Dywan <christian@lanedo.com>

Reviewed by Eric Seidel.

Extra separator after Select All in context menu
https://bugs.webkit.org/show_bug.cgi?id=54092

  • page/ContextMenuController.cpp: Move separator to non-GTK+

port guards since it is for the spelling options menu
which the GTK+ port doesn't use.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r84981 r84983  
     12011-04-26  Christian Dywan  <christian@lanedo.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Extra separator after Select All in context menu
     6        https://bugs.webkit.org/show_bug.cgi?id=54092
     7
     8        * page/ContextMenuController.cpp: Move separator to non-GTK+
     9            port guards since it is for the spelling options menu
     10            which the GTK+ port doesn't use.
     11
    1122011-04-26  James Robinson  <jamesr@chromium.org>
    213
  • trunk/Source/WebCore/page/ContextMenuController.cpp

    r84881 r84983  
    924924
    925925        if (!inPasswordField) {
    926             appendItem(*separatorItem(), m_contextMenu.get());
    927926#ifndef BUILDING_ON_TIGER
    928927#if !PLATFORM(GTK)
     928            appendItem(*separatorItem(), m_contextMenu.get());
    929929            ContextMenuItem SpellingAndGrammarMenuItem(SubmenuType, ContextMenuItemTagSpellingMenu,
    930930                contextMenuItemTagSpellingMenu());
Note: See TracChangeset for help on using the changeset viewer.