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/preferences_dialog.hpp
parent2586ee90ef57e36a66b2722a6f5412455b811a66 (diff)
[qt] allow qt4 builds
Diffstat (limited to 'qt/preferences_dialog.hpp')
-rw-r--r--qt/preferences_dialog.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/qt/preferences_dialog.hpp b/qt/preferences_dialog.hpp
index cd36bd728d..0cc277a3ee 100644
--- a/qt/preferences_dialog.hpp
+++ b/qt/preferences_dialog.hpp
@@ -1,6 +1,11 @@
#pragma once
-#include <QtWidgets/QDialog>
+#include <Qt>
+#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
+ #include <QtGui/QDialog>
+#else
+ #include <QtWidgets/QDialog>
+#endif
class QTableWidget;
class QButtonGroup;