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:
authorvng <viktor.govako@gmail.com>2012-12-22 03:07:38 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:58:04 +0300
commit300ce68b5738d4237dee91963fff7157c68af26c (patch)
treea9b6d61fecf6adb5cd2e302034033971bcb1bec5 /testing
parentf76801b5dc9cabfd245003479a3aa759464e7a07 (diff)
Migrating to QT5.
Diffstat (limited to 'testing')
-rw-r--r--testing/testingmain.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp
index 331af3cd0b..d78ecc39ce 100644
--- a/testing/testingmain.cpp
+++ b/testing/testingmain.cpp
@@ -9,14 +9,15 @@
#ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP
#ifdef OMIM_OS_MAC // on Mac OS X native run loop works only for QApplication :(
- #include <QApplication>
+ #include <QtWidgets/QApplication>
#define QAPP QApplication
#else
- #include <QCoreApplication>
+ #include <QtCore/QCoreApplication>
#define QAPP QCoreApplication
#endif
#endif
+
static bool g_bLastTestOK = true;
int main(int argc, char * argv[])