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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:32:18 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1174dd84912cc343e4d3c3438b5c05b982d2db5e
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Sep 19 00:46:57 2010 +0000

    2010-09-18  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Andreas Kling.
    
            [BREWMP] Fix a typo in key code name
            https://bugs.webkit.org/show_bug.cgi?id=46003
    
            AVK_CLR is the right Brew MP key code name for VK_BACK.
    
            * platform/brew/PlatformKeyboardEventBrew.cpp:
            (WebCore::windowsKeyCodeForKeyEvent):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67803 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 723cc24..f6a8129 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-18  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Andreas Kling.
+
+        [BREWMP] Fix a typo in key code name
+        https://bugs.webkit.org/show_bug.cgi?id=46003
+
+        AVK_CLR is the right Brew MP key code name for VK_BACK.
+
+        * platform/brew/PlatformKeyboardEventBrew.cpp:
+        (WebCore::windowsKeyCodeForKeyEvent):
+
 2010-09-18  Andreas Kling  <andreas.kling at nokia.com>
 
         Reviewed by Oliver Hunt.
diff --git a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
index 1e1ebf2..d7a1279 100644
--- a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
+++ b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
@@ -106,7 +106,7 @@ static String keyIdentifierForBrewKeyCode(uint16 keyCode)
 static int windowsKeyCodeForKeyEvent(uint16 code)
 {
     switch (code) {
-    case AVK_A:
+    case AVK_CLR:
         return VK_BACK; // (08) BACKSPACE key
     case AVK_ENTER:
         return VK_RETURN; // (0D) Return key

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list