[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 13:32:06 UTC 2010
    
    
  
The following commit has been merged in the debian/experimental branch:
commit 30da2695f6a2f88bb9e57798ce632f6cd89aca0d
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 18 22:48:44 2010 +0000
    2010-09-18  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Andreas Kling.
    
            [BREWMP] Wrong key code type in keyIdentifierForBrewKeyCode
            https://bugs.webkit.org/show_bug.cgi?id=46005
    
            The type of key code in Brew MP is uint16. Take uint16 instead of int16 in keyIdentifierForBrewKeyCode.
    
            * platform/brew/PlatformKeyboardEventBrew.cpp:
            (WebCore::keyIdentifierForBrewKeyCode):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67794 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2af4a3b..2ea0209 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] Wrong key code type in keyIdentifierForBrewKeyCode
+        https://bugs.webkit.org/show_bug.cgi?id=46005
+
+        The type of key code in Brew MP is uint16. Take uint16 instead of int16 in keyIdentifierForBrewKeyCode.
+
+        * platform/brew/PlatformKeyboardEventBrew.cpp:
+        (WebCore::keyIdentifierForBrewKeyCode):
+
 2010-09-18  Matthew Delaney  <mdelaney at apple.com>
 
         Reviewed by Oliver Hunt.
diff --git a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
index 9d172a3..1e1ebf2 100644
--- a/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
+++ b/WebCore/platform/brew/PlatformKeyboardEventBrew.cpp
@@ -35,7 +35,7 @@
 
 namespace WebCore {
 
-static String keyIdentifierForBrewKeyCode(int16 keyCode)
+static String keyIdentifierForBrewKeyCode(uint16 keyCode)
 {
     switch (keyCode) {
     case AVK_LALT:
-- 
WebKit Debian packaging
    
    
More information about the Pkg-webkit-commits
mailing list