Title: [88041] trunk/Source/WebKit/qt
Revision
88041
Author
[email protected]
Date
2011-06-03 13:07:53 -0700 (Fri, 03 Jun 2011)

Log Message

2011-06-03  Alexis Menard  <[email protected]>

        Unreviewed build fix after r87902.

        To support building namespaced Qt, we require that forward-declarations
        of Qt classes be wrapped in QT_BEGIN_NAMESPACE and QT_END_NAMESPACE but
        only on classes inside Qt.
        
        * WebCoreSupport/DumpRenderTreeSupportQt.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (88040 => 88041)


--- trunk/Source/WebKit/qt/ChangeLog	2011-06-03 19:43:52 UTC (rev 88040)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-06-03 20:07:53 UTC (rev 88041)
@@ -1,5 +1,15 @@
 2011-06-03  Alexis Menard  <[email protected]>
 
+        Unreviewed build fix after r87902.
+
+        To support building namespaced Qt, we require that forward-declarations
+        of Qt classes be wrapped in QT_BEGIN_NAMESPACE and QT_END_NAMESPACE but
+        only on classes inside Qt.
+        
+        * WebCoreSupport/DumpRenderTreeSupportQt.h:
+
+2011-06-03  Alexis Menard  <[email protected]>
+
         Reviewed by Benjamin Poulain.
 
         Some warning fixes. Values in switch not handled, and

Modified: trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h (88040 => 88041)


--- trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h	2011-06-03 19:43:52 UTC (rev 88040)
+++ trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h	2011-06-03 20:07:53 UTC (rev 88041)
@@ -46,12 +46,13 @@
 }
 #endif
 
-QT_BEGIN_NAMESPACE
 class QWebElement;
 class QWebFrame;
 class QWebPage;
 class QWebHistoryItem;
 class QWebScriptWorld;
+
+QT_BEGIN_NAMESPACE
 class QUrl;
 QT_END_NAMESPACE
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to