aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar wodim2016-04-07 13:00:54 +0200
committerGravatar wodim2016-04-07 13:00:54 +0200
commit22ca84d4d22ed7e39c626981e5ae85e9287c3edb (patch)
tree5bf35583a38fadbcef5ddd37705618b1e79f67af /src/modules/help
parentFix #1921 (diff)
downloadKVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.tar.gz
KVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.tar.bz2
KVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.zip
Remove all ifdefs related to older versions of Qt.
Now that we only support Qt 5 we will no longer need these.
Diffstat (limited to 'src/modules/help')
-rw-r--r--src/modules/help/HelpWidget.h6
-rw-r--r--src/modules/help/HelpWindow.h6
2 files changed, 2 insertions, 10 deletions
diff --git a/src/modules/help/HelpWidget.h b/src/modules/help/HelpWidget.h
index 7d22fb9d4..79a3d78fa 100644
--- a/src/modules/help/HelpWidget.h
+++ b/src/modules/help/HelpWidget.h
@@ -28,11 +28,7 @@
#include "kvi_settings.h"
#ifdef COMPILE_WEBKIT_SUPPORT
- #if (QT_VERSION < 0x050000)
- #include <QtWebKit/QWebView>
- #else
- #include <QtWebKitWidgets/QWebView>
- #endif
+ #include <QtWebKitWidgets/QWebView>
#include <QToolBar>
#include <QVBoxLayout>
#else
diff --git a/src/modules/help/HelpWindow.h b/src/modules/help/HelpWindow.h
index 6c6996be7..0c4d5f831 100644
--- a/src/modules/help/HelpWindow.h
+++ b/src/modules/help/HelpWindow.h
@@ -32,11 +32,7 @@
#include <QTabWidget>
#ifdef COMPILE_WEBKIT_SUPPORT
- #if (QT_VERSION < 0x050000)
- #include <QtWebKit/QWebView>
- #else
- #include <QtWebKitWidgets/QWebView>
- #endif
+ #include <QtWebKitWidgets/QWebView>
#else
class QTextBrowser;
#endif