Title: [145747] trunk/Tools
Revision
145747
Author
[email protected]
Date
2013-03-13 13:42:11 -0700 (Wed, 13 Mar 2013)

Log Message

[Qt] Unreviewed prospective Windows build fix

Do the usual thing, include the moc generated code in the .cpp file instead
of compiling it standalone, to ensure that config.h is included, too, and
NOMINMAX is defined to avoid the min/max conflict when also including qdatetime.h.

* DumpRenderTree/qt/EventSenderQt.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (145746 => 145747)


--- trunk/Tools/ChangeLog	2013-03-13 20:38:51 UTC (rev 145746)
+++ trunk/Tools/ChangeLog	2013-03-13 20:42:11 UTC (rev 145747)
@@ -1,5 +1,15 @@
 2013-03-13  Simon Hausmann  <[email protected]>
 
+        [Qt] Unreviewed prospective Windows build fix
+
+        Do the usual thing, include the moc generated code in the .cpp file instead
+        of compiling it standalone, to ensure that config.h is included, too, and
+        NOMINMAX is defined to avoid the min/max conflict when also including qdatetime.h.
+
+        * DumpRenderTree/qt/EventSenderQt.cpp:
+
+2013-03-13  Simon Hausmann  <[email protected]>
+
         [Qt] Port TestRunner::findString to shared interface
         https://bugs.webkit.org/show_bug.cgi?id=112147
 

Modified: trunk/Tools/DumpRenderTree/qt/EventSenderQt.cpp (145746 => 145747)


--- trunk/Tools/DumpRenderTree/qt/EventSenderQt.cpp	2013-03-13 20:38:51 UTC (rev 145746)
+++ trunk/Tools/DumpRenderTree/qt/EventSenderQt.cpp	2013-03-13 20:42:11 UTC (rev 145747)
@@ -761,3 +761,5 @@
     } else
         QApplication::postEvent(receiver, event); // event deleted by the system
 }
+
+#include "moc_EventSenderQt.cpp"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to