Title: [107585] trunk/Source/WebCore
Revision
107585
Author
[email protected]
Date
2012-02-13 10:08:49 -0800 (Mon, 13 Feb 2012)

Log Message

Port RunLoop to WinCE
https://bugs.webkit.org/show_bug.cgi?id=76781

Reviewed by Adam Roben.

* platform/win/RunLoopWin.cpp:
(WebCore::RunLoop::registerRunLoopMessageWindowClass):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (107584 => 107585)


--- trunk/Source/WebCore/ChangeLog	2012-02-13 18:06:41 UTC (rev 107584)
+++ trunk/Source/WebCore/ChangeLog	2012-02-13 18:08:49 UTC (rev 107585)
@@ -1,3 +1,13 @@
+2012-02-13  Patrick Gansterer  <[email protected]>
+
+        Port RunLoop to WinCE
+        https://bugs.webkit.org/show_bug.cgi?id=76781
+
+        Reviewed by Adam Roben.
+
+        * platform/win/RunLoopWin.cpp:
+        (WebCore::RunLoop::registerRunLoopMessageWindowClass):
+
 2012-02-10  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: Make ScriptsNavigator default file selector.

Modified: trunk/Source/WebCore/platform/win/RunLoopWin.cpp (107584 => 107585)


--- trunk/Source/WebCore/platform/win/RunLoopWin.cpp	2012-02-13 18:06:41 UTC (rev 107584)
+++ trunk/Source/WebCore/platform/win/RunLoopWin.cpp	2012-02-13 18:08:49 UTC (rev 107585)
@@ -86,13 +86,12 @@
 {
     // FIXME: This really only needs to be called once.
 
-    WNDCLASSEX windowClass = { 0 };
-    windowClass.cbSize          = sizeof(windowClass);
+    WNDCLASS windowClass = { 0 };
     windowClass.lpfnWndProc     = RunLoop::RunLoopWndProc;
     windowClass.cbWndExtra      = sizeof(RunLoop*);
     windowClass.lpszClassName   = kRunLoopMessageWindowClassName;
 
-    return !!::RegisterClassEx(&windowClass);
+    return !!::RegisterClass(&windowClass);
 }
 
 RunLoop::RunLoop()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to