Title: [122727] trunk/Source/WebKit/qt
Revision
122727
Author
[email protected]
Date
2012-07-16 07:56:08 -0700 (Mon, 16 Jul 2012)

Log Message

[Qt] Fix inconsistent DLL linkage on Windows with WebKit1
https://bugs.webkit.org/show_bug.cgi?id=91375

Patch by Simon Hausmann <[email protected]> on 2012-07-16
Reviewed by Laszlo Gombos.

Export QWebHistoryItemPrivate as required for tests. Unfortunately we cannot use
Q_AUTOTEST_EXPORT outside of Qt.

* Api/qwebhistory_p.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/Api/qwebhistory_p.h (122726 => 122727)


--- trunk/Source/WebKit/qt/Api/qwebhistory_p.h	2012-07-16 14:56:05 UTC (rev 122726)
+++ trunk/Source/WebKit/qt/Api/qwebhistory_p.h	2012-07-16 14:56:08 UTC (rev 122727)
@@ -22,12 +22,13 @@
 
 #include "BackForwardListImpl.h"
 #include "HistoryItem.h"
+#include "qwebkitglobal.h"
 #include <QtCore/qglobal.h>
 #include <QtCore/qshareddata.h>
 
 class QWebPagePrivate;
 
-class Q_AUTOTEST_EXPORT QWebHistoryItemPrivate : public QSharedData {
+class QWEBKIT_EXPORT QWebHistoryItemPrivate : public QSharedData {
 public:
     static QExplicitlySharedDataPointer<QWebHistoryItemPrivate> get(QWebHistoryItem* q)
     {

Modified: trunk/Source/WebKit/qt/ChangeLog (122726 => 122727)


--- trunk/Source/WebKit/qt/ChangeLog	2012-07-16 14:56:05 UTC (rev 122726)
+++ trunk/Source/WebKit/qt/ChangeLog	2012-07-16 14:56:08 UTC (rev 122727)
@@ -1,3 +1,15 @@
+2012-07-16  Simon Hausmann  <[email protected]>
+
+        [Qt] Fix inconsistent DLL linkage on Windows with WebKit1
+        https://bugs.webkit.org/show_bug.cgi?id=91375
+
+        Reviewed by Laszlo Gombos.
+
+        Export QWebHistoryItemPrivate as required for tests. Unfortunately we cannot use
+        Q_AUTOTEST_EXPORT outside of Qt.
+
+        * Api/qwebhistory_p.h:
+
 2012-07-16  Zoltan Horvath  <[email protected]>
 
         [Qt] Change NativeImagePtr from QPixmap* to QImage*
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to