[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

vestbo at webkit.org vestbo at webkit.org
Thu Oct 29 20:38:55 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 4e5a22243abebba5d246645718310d3c32e4ecaf
Author: vestbo at webkit.org <vestbo at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 5 10:57:23 2009 +0000

    2009-10-05  Jakub Wieczorek  <faw217 at gmail.com>
    
            Reviewed by Tor Arne Vestbø.
    
            [Qt] windowsKeyCodeForKeyEvent() returns a wrong value for the F10 key.
            https://bugs.webkit.org/show_bug.cgi?id=30042
    
            * platform/qt/PlatformKeyboardEventQt.cpp:
            (WebCore::windowsKeyCodeForKeyEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49089 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 26c17c6..8b07193 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-10-05  Jakub Wieczorek  <faw217 at gmail.com>
+
+        Reviewed by Tor Arne Vestbø.
+
+        [Qt] windowsKeyCodeForKeyEvent() returns a wrong value for the F10 key.
+        https://bugs.webkit.org/show_bug.cgi?id=30042
+
+        * platform/qt/PlatformKeyboardEventQt.cpp:
+        (WebCore::windowsKeyCodeForKeyEvent):
+
 2009-10-05  Fumitoshi Ukai  <ukai at chromium.org>
 
         Unreviewed build fix for ENABLE(WEB_SOCKETS) and v8.
diff --git a/WebCore/platform/qt/PlatformKeyboardEventQt.cpp b/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
index 935882a..37ea681 100644
--- a/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
+++ b/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
@@ -217,7 +217,7 @@ static int windowsKeyCodeForKeyEvent(unsigned int keycode, bool isKeypad = false
         case Qt::Key_F9:
             return VK_F9;
         case Qt::Key_F10:
-            return VK_F11;
+            return VK_F10;
         case Qt::Key_F11:
             return VK_F11;
         case Qt::Key_F12:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list