[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

luiz at webkit.org luiz at webkit.org
Wed Dec 22 11:37:45 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d51774db670ccea749056c2253078b020aa59a40
Author: luiz at webkit.org <luiz at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jul 31 23:12:50 2010 +0000

    2010-07-31  Luiz Agostini  <luiz.agostini at openbossa.org>
    
            Windows build fix.
    
            * platform/win/PopupMenuWin.cpp:
            (WebCore::PopupMenuWin::PopupMenuWndProc):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64427 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index c324f24..370665e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-31  Luiz Agostini  <luiz.agostini at openbossa.org>
+
+        Windows build fix.
+
+        * platform/win/PopupMenuWin.cpp:
+        (WebCore::PopupMenuWin::PopupMenuWndProc):
+
 2010-07-27  Luiz Agostini  <luiz.agostini at openbossa.org>
 
         Reviewed by Darin Fisher.
diff --git a/WebCore/platform/win/PopupMenuWin.cpp b/WebCore/platform/win/PopupMenuWin.cpp
index cbacd4f..aaadc53 100644
--- a/WebCore/platform/win/PopupMenuWin.cpp
+++ b/WebCore/platform/win/PopupMenuWin.cpp
@@ -752,7 +752,7 @@ LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM
     LONG_PTR longPtr = GetWindowLongPtr(hWnd, 0);
 #endif
     
-    if (PopupMenu* popup = reinterpret_cast<PopupMenu*>(longPtr))
+    if (PopupMenuWin* popup = reinterpret_cast<PopupMenuWin*>(longPtr))
         return popup->wndProc(hWnd, message, wParam, lParam);
     
     if (message == WM_CREATE) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list