From: joone.hur@collabora.co.uk Date: Sat, 5 Feb 2011 06:25:43 +0000 (+0000) Subject: 2011-02-04 Joone Hur X-Git-Url: https://git.webkit.org/?p=WebKit.git;a=commitdiff_plain;h=7de4eaa1c448fe4c8074a96265b7421d62031d6d;ds=sidebyside 2011-02-04 Joone Hur 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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77734 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebKit/gtk/ChangeLog b/Source/WebKit/gtk/ChangeLog index a001168420cc..f4c3946050d7 100644 --- a/Source/WebKit/gtk/ChangeLog +++ b/Source/WebKit/gtk/ChangeLog @@ -1,3 +1,13 @@ +2011-02-04 Joone Hur + + 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. + 2011-02-04 Martin Robinson Reviewed by Xan Lopez. diff --git a/Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp b/Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp index 8f30749a19fe..1278359cbf4e 100644 --- a/Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp +++ b/Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp @@ -97,8 +97,8 @@ FrameLoaderClient::FrameLoaderClient(WebKitWebFrame* frame) , m_policyDecision(0) , m_loadingErrorPage(false) , m_pluginView(0) - , m_hasRepresentation(false) , m_hasSentResponseToPlugin(false) + , m_hasRepresentation(false) { ASSERT(m_frame); }