[Qt][WK2][Mac] WebKit2 does not build on mac after merge of Qt5 refactor branch.
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 3 Oct 2011 11:37:54 +0000 (11:37 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 3 Oct 2011 11:37:54 +0000 (11:37 +0000)
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 <zeno.albisser@nokia.com> on 2011-10-03
Reviewed by Andreas Kling.

* WebKitTestRunner/EventSenderProxy.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96489 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/WebKitTestRunner/EventSenderProxy.h

index 44b3171..12a4e94 100644 (file)
@@ -1,3 +1,15 @@
+2011-10-03  Zeno Albisser  <zeno.albisser@nokia.com>
+
+        [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  <ossy@webkit.org>
 
         Unreviewed. Add Zoltán Árvai as contributor.
index e550228..22d9acb 100644 (file)
 #ifndef EventSenderProxy_h
 #define EventSenderProxy_h
 
+#if PLATFORM(QT)
+#include <Qt>
+#endif
+
 namespace WTR {
 
 class TestController;