Commit 2861d184 authored by jmalonzo@webkit.org's avatar jmalonzo@webkit.org

2009-04-27 Jan Michael Alonzo <jmalonzo@webkit.org>

        Rubber-stamped by Gustavo Noronha.

        Build fix for r42893: change GDK_exclaim to GDK_exclam

        * platform/chromium/KeyCodeConversionGtk.cpp:
        (WebCore::windowsKeyCodeForKeyEvent):
        * platform/gtk/KeyEventGtk.cpp:
        (WebCore::windowsKeyCodeForKeyEvent):

git-svn-id: svn://svn.chromium.org/blink/trunk@42894 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 06a293c7
2009-04-27 Jan Michael Alonzo <jmalonzo@webkit.org>
Rubber-stamped by Gustavo Noronha.
Build fix for r42893: change GDK_exclaim to GDK_exclam
* platform/chromium/KeyCodeConversionGtk.cpp:
(WebCore::windowsKeyCodeForKeyEvent):
* platform/gtk/KeyEventGtk.cpp:
(WebCore::windowsKeyCodeForKeyEvent):
2009-04-27 Fumitoshi Ukai <ukai@google.com>
Reviewed by Xan Lopez.
......@@ -153,7 +153,7 @@ int windowsKeyCodeForKeyEvent(unsigned keycode)
case GDK_parenright:
return VKEY_0; // (30) 0) key
case GDK_1:
case GDK_exclaim:
case GDK_exclam:
return VKEY_1; // (31) 1 ! key
case GDK_2:
case GDK_at:
......
......@@ -260,7 +260,7 @@ static int windowsKeyCodeForKeyEvent(unsigned int keycode)
case GDK_parenright:
return VK_0; // (30) 0) key
case GDK_1:
case GDK_exclaim:
case GDK_exclam:
return VK_1; // (31) 1 ! key
case GDK_2:
case GDK_at:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment