Title: [96489] trunk/Tools
Revision
96489
Author
[email protected]
Date
2011-10-03 04:37:54 -0700 (Mon, 03 Oct 2011)

Log Message

[Qt][WK2][Mac] WebKit2 does not build on mac after merge of Qt5 refactor branch.
https://bugs.webkit.org/show_bug.cgi?id=69223

WebKitTestRunner must include Qt / qnamespace header
to get a definition of Qt::MouseButtons.

Patch by Zeno Albisser <[email protected]> on 2011-10-03
Reviewed by Andreas Kling.

* WebKitTestRunner/EventSenderProxy.h:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (96488 => 96489)


--- trunk/Tools/ChangeLog	2011-10-03 10:55:11 UTC (rev 96488)
+++ trunk/Tools/ChangeLog	2011-10-03 11:37:54 UTC (rev 96489)
@@ -1,3 +1,15 @@
+2011-10-03  Zeno Albisser  <[email protected]>
+
+        [Qt][WK2][Mac] WebKit2 does not build on mac after merge of Qt5 refactor branch.
+        https://bugs.webkit.org/show_bug.cgi?id=69223
+
+        WebKitTestRunner must include Qt / qnamespace header
+        to get a definition of Qt::MouseButtons.
+
+        Reviewed by Andreas Kling.
+
+        * WebKitTestRunner/EventSenderProxy.h:
+
 2011-10-03  Csaba Osztrogonác  <[email protected]>
 
         Unreviewed. Add Zoltán Árvai as contributor.

Modified: trunk/Tools/WebKitTestRunner/EventSenderProxy.h (96488 => 96489)


--- trunk/Tools/WebKitTestRunner/EventSenderProxy.h	2011-10-03 10:55:11 UTC (rev 96488)
+++ trunk/Tools/WebKitTestRunner/EventSenderProxy.h	2011-10-03 11:37:54 UTC (rev 96489)
@@ -27,6 +27,10 @@
 #ifndef EventSenderProxy_h
 #define EventSenderProxy_h
 
+#if PLATFORM(QT)
+#include <Qt>
+#endif
+
 namespace WTR {
 
 class TestController;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to