Title: [154752] trunk/Source/WebKit/qt
Revision
154752
Author
[email protected]
Date
2013-08-28 09:44:27 -0700 (Wed, 28 Aug 2013)

Log Message

[Qt] Option key combinations do not work in Input Elements.
https://bugs.webkit.org/show_bug.cgi?id=120423

Q_WS_MAC is obsolete. We should use Q_OS_MAC instead.
This caused QTBUG-32388.

Reviewed by Darin Adler.

* WebCoreSupport/EditorClientQt.cpp:
(WebCore::EditorClientQt::handleKeyboardEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (154751 => 154752)


--- trunk/Source/WebKit/qt/ChangeLog	2013-08-28 16:33:49 UTC (rev 154751)
+++ trunk/Source/WebKit/qt/ChangeLog	2013-08-28 16:44:27 UTC (rev 154752)
@@ -1,3 +1,16 @@
+2013-08-28  Zeno Albisser  <[email protected]>
+
+        [Qt] Option key combinations do not work in Input Elements.
+        https://bugs.webkit.org/show_bug.cgi?id=120423
+
+        Q_WS_MAC is obsolete. We should use Q_OS_MAC instead.
+        This caused QTBUG-32388.
+
+        Reviewed by Darin Adler.
+
+        * WebCoreSupport/EditorClientQt.cpp:
+        (WebCore::EditorClientQt::handleKeyboardEvent):
+
 2013-08-28  Darin Adler  <[email protected]>
 
         Eliminate Pasteboard::generalPasteboard

Modified: trunk/Source/WebKit/qt/WebCoreSupport/EditorClientQt.cpp (154751 => 154752)


--- trunk/Source/WebKit/qt/WebCoreSupport/EditorClientQt.cpp	2013-08-28 16:33:49 UTC (rev 154751)
+++ trunk/Source/WebKit/qt/WebCoreSupport/EditorClientQt.cpp	2013-08-28 16:44:27 UTC (rev 154752)
@@ -479,7 +479,7 @@
                     if (kevent->altKey())
                         shouldInsertText = true;
                 } else {
-#ifndef Q_WS_MAC
+#ifndef Q_OS_MAC
                 // We need to exclude checking for Alt because it is just a different Shift
                 if (!kevent->altKey())
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to