Title: [179057] trunk/Source/WebCore
Revision
179057
Author
[email protected]
Date
2015-01-23 21:33:40 -0800 (Fri, 23 Jan 2015)

Log Message

Try to fix the build after r179056.

* platform/Cursor.h: (WebCore::Cursor::Cursor): Initialize dadat members in correct order.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (179056 => 179057)


--- trunk/Source/WebCore/ChangeLog	2015-01-24 05:26:41 UTC (rev 179056)
+++ trunk/Source/WebCore/ChangeLog	2015-01-24 05:33:40 UTC (rev 179057)
@@ -1,3 +1,9 @@
+2015-01-23  Alexey Proskuryakov  <[email protected]>
+
+        Try to fix the build after r179056.
+
+        * platform/Cursor.h: (WebCore::Cursor::Cursor): Initialize dadat members in correct order.
+
 2015-01-23  Brent Fulgham  <[email protected]>
 
         [Win] Cursor copy constructor does not initialize scale factor

Modified: trunk/Source/WebCore/platform/Cursor.h (179056 => 179057)


--- trunk/Source/WebCore/platform/Cursor.h	2015-01-24 05:26:41 UTC (rev 179056)
+++ trunk/Source/WebCore/platform/Cursor.h	2015-01-24 05:33:40 UTC (rev 179057)
@@ -132,10 +132,10 @@
 #if !PLATFORM(IOS)
             // This is an invalid Cursor and should never actually get used.
             : m_type(static_cast<Type>(-1))
-            , m_platformCursor(0)
 #if ENABLE(MOUSE_CURSOR_SCALE)
             , m_imageScaleFactor(1)
 #endif
+            , m_platformCursor(0)
 #endif // !PLATFORM(IOS)
         {
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to