summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Blin <olivier.blin@softathome.com>2013-12-13 14:30:35 +0100
committerAllan Sandfeld Jensen <allan.jensen@digia.com>2014-08-20 18:34:28 +0200
commitbc8af0ec15de3c45b7461be0aee100a0d99c6962 (patch)
tree2211559c0bdd57e73c1246d8e8c15bb8d20a99ef
parent13f80d34ae84c3231118c8013beee55badab8929 (diff)
downloadqtwebkit-5.3.2.tar.gz
Fix key identifier for comma key ("Separator")v5.3.25.3.2
Change-Id: Ib450ba08d1bf53e2f7879560cb8ec764997570db Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
-rw-r--r--Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp b/Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
index 8ac6e0099..6fbd3eb07 100644
--- a/Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
+++ b/Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
@@ -140,7 +140,7 @@ String keyIdentifierForQtKeyCode(int keyCode)
case Qt::Key_Zoom:
return ASCIILiteral("Zoom");
case Qt::Key_Comma:
- return ASCIILiteral("Seperator");
+ return ASCIILiteral("Separator");
case Qt::Key_Plus:
return ASCIILiteral("Add");
case Qt::Key_Minus: