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

aroben at apple.com aroben at apple.com
Wed Dec 22 15:56:49 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4648e4205180b25fbe809a44a5bf5e890ca52966
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 17 02:21:51 2010 +0000

    Fix horizontal scrolling via the mousewheel/trackpad on Windows
    
    Reviewed by Mark Rowe.
    
    * Shared/win/WebEventFactory.cpp: Fixed typo in the
    WM_VISTA_MOUSEHWHEEL constant.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72155 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 5f7e1ea..03647b0 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-16  Adam Roben  <aroben at apple.com>
+
+        Fix horizontal scrolling via the mousewheel/trackpad on Windows
+
+        Reviewed by Mark Rowe.
+
+        * Shared/win/WebEventFactory.cpp: Fixed typo in the
+        WM_VISTA_MOUSEHWHEEL constant.
+
 2010-11-16  Steve Falkenburg  <sfalken at apple.com>
 
         Reviewed by Adam Roben.
diff --git a/WebKit2/Shared/win/WebEventFactory.cpp b/WebKit2/Shared/win/WebEventFactory.cpp
index b242418..1d3af10 100644
--- a/WebKit2/Shared/win/WebEventFactory.cpp
+++ b/WebKit2/Shared/win/WebEventFactory.cpp
@@ -36,7 +36,7 @@ namespace WebKit {
 static const unsigned short HIGH_BIT_MASK_SHORT = 0x8000;
 static const unsigned short SPI_GETWHEELSCROLLCHARS = 0x006C;
 
-static const unsigned WM_VISTA_MOUSEHWHEEL = 0x30E;
+static const unsigned WM_VISTA_MOUSEHWHEEL = 0x20E;
 
 static inline LPARAM relativeCursorPosition(HWND hwnd)
 {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list