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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:26:53 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit fbde34e03008650e5c6978c4a372e34af6b274ed
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 23 21:46:54 2010 +0000

    2010-07-23  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Adam Roben.
    
            [WINCE] Buildfix for PopupMenuWin.cpp
            https://bugs.webkit.org/show_bug.cgi?id=42906
    
            Use correct API for BitmapInfo landed in r63944.
    
            * platform/win/PopupMenuWin.cpp:
            (WebCore::PopupMenu::paint):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63996 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6d24e14..6cdde9c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-23  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Adam Roben.
+
+        [WINCE] Buildfix for PopupMenuWin.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=42906
+
+        Use correct API for BitmapInfo landed in r63944.
+
+        * platform/win/PopupMenuWin.cpp:
+        (WebCore::PopupMenu::paint):
+
 2010-07-23  fsamuel at chromium.org  <fsamuel at chromium.org>
 
         Reviewed by David Hyatt.
diff --git a/WebCore/platform/win/PopupMenuWin.cpp b/WebCore/platform/win/PopupMenuWin.cpp
index 44141f2..8e4320e 100644
--- a/WebCore/platform/win/PopupMenuWin.cpp
+++ b/WebCore/platform/win/PopupMenuWin.cpp
@@ -578,7 +578,7 @@ void PopupMenu::paint(const IntRect& damageRect, HDC hdc)
     }
     if (!m_bmp) {
 #if OS(WINCE)
-        BitmapInfo bitmapInfo(true, clientRect().width(), clientRect().height());
+        BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size(), 16);
 #else
         BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size());
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list