summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/chromium/KeyCodeConversionGtk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/chromium/KeyCodeConversionGtk.cpp')
-rw-r--r--WebCore/platform/chromium/KeyCodeConversionGtk.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/WebCore/platform/chromium/KeyCodeConversionGtk.cpp b/WebCore/platform/chromium/KeyCodeConversionGtk.cpp
index a3efe44..4fc7f32 100644
--- a/WebCore/platform/chromium/KeyCodeConversionGtk.cpp
+++ b/WebCore/platform/chromium/KeyCodeConversionGtk.cpp
@@ -150,9 +150,10 @@ int windowsKeyCodeForKeyEvent(unsigned keycode)
case GDK_Help:
return VKEY_HELP; // (2F) HELP key
case GDK_0:
- case GDK_parenleft:
+ case GDK_parenright:
return VKEY_0; // (30) 0) key
case GDK_1:
+ case GDK_exclam:
return VKEY_1; // (31) 1 ! key
case GDK_2:
case GDK_at:
@@ -176,7 +177,7 @@ int windowsKeyCodeForKeyEvent(unsigned keycode)
case GDK_asterisk:
return VKEY_8; // (38) 8 key '*'
case GDK_9:
- case GDK_parenright:
+ case GDK_parenleft:
return VKEY_9; // (39) 9 key '('
case GDK_a:
case GDK_A: