Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarafei Praliaskouski <komzpa@mapswith.me>2013-07-04 16:28:33 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:58:07 +0300
commita3353dbd542388b14fcb7b37f50d0b9d0ddedffd (patch)
tree52336db0a76564e4270167d901a9028b9a4fe469 /qt/mainwindow.hpp
parent2586ee90ef57e36a66b2722a6f5412455b811a66 (diff)
[qt] allow qt4 builds
Diffstat (limited to 'qt/mainwindow.hpp')
-rw-r--r--qt/mainwindow.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/qt/mainwindow.hpp b/qt/mainwindow.hpp
index 5f37d65898..7b27abe1e5 100644
--- a/qt/mainwindow.hpp
+++ b/qt/mainwindow.hpp
@@ -4,7 +4,13 @@
#include "../std/scoped_ptr.hpp"
-#include <QtWidgets/QMainWindow>
+#include <Qt>
+#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
+ #include <QtGui/QMainWindow>
+#else
+ #include <QtWidgets/QMainWindow>
+#endif
+
class QDockWidget;