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
+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.
+
2011-02-04 Martin Robinson <mrobinson@igalia.com>
Reviewed by Xan Lopez.
, m_policyDecision(0)
, m_loadingErrorPage(false)
, m_pluginView(0)
- , m_hasRepresentation(false)
, m_hasSentResponseToPlugin(false)
+ , m_hasRepresentation(false)
{
ASSERT(m_frame);
}