Changeset 77734 in webkit


Ignore:
Timestamp:
Feb 4, 2011 10:25:43 PM (13 years ago)
Author:
joone.hur@collabora.co.uk
Message:

2011-02-04 Joone Hur <joone.hur@collabora.co.uk>

Unreviewed, Fix compilation warning.

Constructor initialization list should follow the declaration order.

  • WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::FrameLoaderClient::FrameLoaderClient): m_hasRepresentation is moved to the last position in the initialization list.
Location:
trunk/Source/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/gtk/ChangeLog

    r77714 r77734  
     12011-02-04  Joone Hur  <joone.hur@collabora.co.uk>
     2
     3        Unreviewed, Fix compilation warning.
     4
     5        Constructor initialization list should follow the declaration order.
     6
     7        * WebCoreSupport/FrameLoaderClientGtk.cpp:
     8        (WebKit::FrameLoaderClient::FrameLoaderClient): m_hasRepresentation is moved to
     9        the last position in the initialization list.
     10
    1112011-02-04  Martin Robinson  <mrobinson@igalia.com>
    212
  • trunk/Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp

    r77602 r77734  
    9898    , m_loadingErrorPage(false)
    9999    , m_pluginView(0)
     100    , m_hasSentResponseToPlugin(false)
    100101    , m_hasRepresentation(false)
    101     , m_hasSentResponseToPlugin(false)
    102102{
    103103    ASSERT(m_frame);
Note: See TracChangeset for help on using the changeset viewer.