Changeset 90692 in webkit


Ignore:
Timestamp:
Jul 10, 2011 9:32:52 AM (13 years ago)
Author:
Patrick Gansterer
Message:

Reviewed by Adam Barth.

Fix member variable order of ContextMenuItem
https://bugs.webkit.org/show_bug.cgi?id=59905

Use the same order at decleration and assignment to silence compiler warning.

  • platform/ContextMenuItem.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90691 r90692  
     12011-07-10  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix member variable order of ContextMenuItem
     6        https://bugs.webkit.org/show_bug.cgi?id=59905
     7
     8        Use the same order at decleration and assignment to silence compiler warning.
     9
     10        * platform/ContextMenuItem.h:
     11
    1122011-07-10  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/Source/WebCore/platform/ContextMenuItem.h

    r88634 r90692  
    288288    private:
    289289#if USE(CROSS_PLATFORM_CONTEXT_MENUS)
     290        ContextMenuItemType m_type;
     291        ContextMenuAction m_action;
    290292        String m_title;
    291293        bool m_enabled;
    292294        bool m_checked;
    293         ContextMenuAction m_action;
    294         ContextMenuItemType m_type;
    295295        Vector<ContextMenuItem> m_subMenuItems;
    296296#else
Note: See TracChangeset for help on using the changeset viewer.