Skip to content

Instantly share code, notes, and snippets.

@torarnv
Created June 5, 2009 15:58
Show Gist options
  • Save torarnv/124344 to your computer and use it in GitHub Desktop.
Save torarnv/124344 to your computer and use it in GitHub Desktop.
commit efa4782cf91d26d521f1ade3e65313bca317f2b4
Author: Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Date: Thu Jun 4 21:21:44 2009 +0200
2009-06-05 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Simon Hausmann.
[Qt] Add missing includes of config.h
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6fcb614..0b6f06f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2009-06-05 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
+
+ Reviewed by Simon Hausmann.
+
+ [Qt] Add missing includes of config.h
+
+ * platform/qt/QWebPopup.cpp:
+ * platform/text/qt/TextBreakIteratorQt.cpp:
+
2009-06-05 Fumitoshi Ukai <ukai@google.com>
Reviewed by Dimitri Glazkov.
diff --git a/WebCore/platform/qt/QWebPopup.cpp b/WebCore/platform/qt/QWebPopup.cpp
index 4d57c9b..f437c27 100644
--- a/WebCore/platform/qt/QWebPopup.cpp
+++ b/WebCore/platform/qt/QWebPopup.cpp
@@ -82,4 +82,6 @@ void QWebPopup::activeChanged(int index)
m_client->valueChanged(index);
}
-}
+} // namespace WebCore
+
+#include "moc_QWebPopup.cpp"
diff --git a/WebCore/platform/text/qt/TextBreakIteratorQt.cpp b/WebCore/platform/text/qt/TextBreakIteratorQt.cpp
index 4dc23ee..06e8f37 100644
--- a/WebCore/platform/text/qt/TextBreakIteratorQt.cpp
+++ b/WebCore/platform/text/qt/TextBreakIteratorQt.cpp
@@ -20,6 +20,7 @@
*
*/
+#include "config.h"
#include "TextBreakIterator.h"
#if QT_VERSION >= 0x040400
diff --git a/WebKit/qt/Api/qcookiejar.cpp b/WebKit/qt/Api/qcookiejar.cpp
index a6cbdab..3e5a7c3 100644
--- a/WebKit/qt/Api/qcookiejar.cpp
+++ b/WebKit/qt/Api/qcookiejar.cpp
@@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
-
+#include "config.h"
#include "qcookiejar.h"
#include <QCoreApplication>
uint qHash(const QUrl&);
diff --git a/WebKit/qt/Api/qwebnetworkinterface.cpp b/WebKit/qt/Api/qwebnetworkinterface.cpp
index c09f65a..c64fac2 100644
--- a/WebKit/qt/Api/qwebnetworkinterface.cpp
+++ b/WebKit/qt/Api/qwebnetworkinterface.cpp
@@ -19,6 +19,7 @@
Boston, MA 02110-1301, USA.
*/
+#include "config.h"
#include <qglobal.h>
#if QT_VERSION < 0x040400
#include "qwebframe.h"
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 0b40f27..dfaf777 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,15 @@
+2009-06-05 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
+
+ Reviewed by Simon Hausmann.
+
+ [Qt] Add missing includes of config.h
+
+ * Api/qcookiejar.cpp:
+ * Api/qwebnetworkinterface.cpp:
+ * Plugins/ICOHandler.cpp:
+ * WebCoreSupport/DragClientQt.cpp:
+ * WebCoreSupport/EditCommandQt.cpp:
+
2009-06-03 Kenneth Rohde Christiansen <kenneth.christiansen@openbossa.org>
Reviewed by Simon Hausmann.
diff --git a/WebKit/qt/Plugins/ICOHandler.cpp b/WebKit/qt/Plugins/ICOHandler.cpp
index 44f3d44..d7fae07 100644
--- a/WebKit/qt/Plugins/ICOHandler.cpp
+++ b/WebKit/qt/Plugins/ICOHandler.cpp
@@ -6,6 +6,7 @@
*
*/
+#include "config.h"
#include "ICOHandler.h"
#include <cstring>
diff --git a/WebKit/qt/WebCoreSupport/DragClientQt.cpp b/WebKit/qt/WebCoreSupport/DragClientQt.cpp
index b719868..0df0768 100644
--- a/WebKit/qt/WebCoreSupport/DragClientQt.cpp
+++ b/WebKit/qt/WebCoreSupport/DragClientQt.cpp
@@ -23,6 +23,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include "config.h"
#include "DragClientQt.h"
#include "ClipboardQt.h"
diff --git a/WebKit/qt/WebCoreSupport/EditCommandQt.cpp b/WebKit/qt/WebCoreSupport/EditCommandQt.cpp
index 1532388..a166840 100644
--- a/WebKit/qt/WebCoreSupport/EditCommandQt.cpp
+++ b/WebKit/qt/WebCoreSupport/EditCommandQt.cpp
@@ -17,6 +17,7 @@
Boston, MA 02110-1301, USA.
*/
+#include "config.h"
#include <wtf/Platform.h>
#include "EditCommandQt.h"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment