summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorPatrick Star <qtc-committer@nokia.com>2008-12-02 13:38:31 +0100
committerPatrick Star <qtc-committer@nokia.com>2008-12-02 13:38:31 +0100
commit7d6f2bb45af5f1ae635058d6d32b47fc2000bd67 (patch)
treeae4a8c4e5a50194d77b95ea78aa81839a1d92225 /shared
parent03b3f5b3a7bca07104173ad82207321980a6bf39 (diff)
downloadqt-creator-7d6f2bb45af5f1ae635058d6d32b47fc2000bd67.tar.gz
Fixes: - use QT_NO_WEBKIT instead of QT_WEBKIT, USE_WEBKIT
Task: - none AutoTest: - compile test Details: - use QT_NO_WEBKIT instead of QT_WEBKIT, USE_WEBKIT
Diffstat (limited to 'shared')
-rw-r--r--shared/help/helpviewer.cpp2
-rw-r--r--shared/help/helpviewer.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/shared/help/helpviewer.cpp b/shared/help/helpviewer.cpp
index 0434fee4ca..ff84273f72 100644
--- a/shared/help/helpviewer.cpp
+++ b/shared/help/helpviewer.cpp
@@ -56,7 +56,7 @@
QT_BEGIN_NAMESPACE
-#if defined(USE_WEBKIT)
+#if !defined(QT_NO_WEBKIT)
class HelpNetworkReply : public QNetworkReply
{
diff --git a/shared/help/helpviewer.h b/shared/help/helpviewer.h
index 3156f196d0..ce11994625 100644
--- a/shared/help/helpviewer.h
+++ b/shared/help/helpviewer.h
@@ -39,7 +39,7 @@
#include <QtGui/QTextBrowser>
#include <QtGui/QAction>
-#if defined(USE_WEBKIT)
+#if !defined(QT_NO_WEBKIT)
#include <QWebView>
#endif
@@ -54,7 +54,7 @@ class QKeyEvent;
class QMouseEvent;
class QContextMenuEvent;
-#if defined(USE_WEBKIT)
+#if !defined(QT_NO_WEBKIT)
class HelpViewer : public QWebView
{