Title: [96435] trunk/Source/WebKit2
Revision
96435
Author
[email protected]
Date
2011-09-30 16:01:23 -0700 (Fri, 30 Sep 2011)

Log Message

[Qt] Add missing include for QMimeData
https://bugs.webkit.org/show_bug.cgi?id=69178

Reviewed by Tor Arne Vestbø.

This was implicitly included by other headers, but due to changes in
Qt5 we need to include explicitly.

* UIProcess/qt/QtWebPageProxy.cpp:
* WebProcess/WebPage/WebPage.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (96434 => 96435)


--- trunk/Source/WebKit2/ChangeLog	2011-09-30 22:53:53 UTC (rev 96434)
+++ trunk/Source/WebKit2/ChangeLog	2011-09-30 23:01:23 UTC (rev 96435)
@@ -1,3 +1,16 @@
+2011-09-30  Caio Marcelo de Oliveira Filho  <[email protected]>
+
+        [Qt] Add missing include for QMimeData
+        https://bugs.webkit.org/show_bug.cgi?id=69178
+
+        Reviewed by Tor Arne Vestbø.
+
+        This was implicitly included by other headers, but due to changes in
+        Qt5 we need to include explicitly.
+
+        * UIProcess/qt/QtWebPageProxy.cpp:
+        * WebProcess/WebPage/WebPage.cpp:
+
 2011-09-30  Tor Arne Vestbø  <[email protected]>
 
         [Qt] Prevent qDebug() output from DRT and WTR unless --verbose

Modified: trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp (96434 => 96435)


--- trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp	2011-09-30 22:53:53 UTC (rev 96434)
+++ trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp	2011-09-30 23:01:23 UTC (rev 96435)
@@ -46,6 +46,7 @@
 #include <QApplication>
 #include <QGraphicsSceneMouseEvent>
 #include <QJSEngine>
+#include <QMimeData>
 #include <QStyle>
 #include <QTouchEvent>
 #include <QUndoStack>

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (96434 => 96435)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-09-30 22:53:53 UTC (rev 96434)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-09-30 23:01:23 UTC (rev 96435)
@@ -121,6 +121,7 @@
 
 #if PLATFORM(QT)
 #include "HitTestResult.h"
+#include <QMimeData>
 #endif
 
 #ifndef NDEBUG
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to