summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qlocale_unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qlocale_unix.cpp')
-rw-r--r--src/corelib/tools/qlocale_unix.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/corelib/tools/qlocale_unix.cpp b/src/corelib/tools/qlocale_unix.cpp
index 174d739..87cd112 100644
--- a/src/corelib/tools/qlocale_unix.cpp
+++ b/src/corelib/tools/qlocale_unix.cpp
@@ -48,6 +48,7 @@
#if defined(Q_OS_QNX)
#include <QtCore/private/qcore_unix_p.h>
+#include <QCoreApplication>
#include <unistd.h>
#include <errno.h>
@@ -113,9 +114,11 @@ void QBBLocaleData::readPPSLocale()
return;
}
- ppsNotifier = new QSocketNotifier(ppsFd, QSocketNotifier::Read, this);
updateMesurementSystem();
- QObject::connect(ppsNotifier, SIGNAL(activated(int)), this, SLOT(updateMesurementSystem()));
+ if (QCoreApplication::instance()) {
+ ppsNotifier = new QSocketNotifier(ppsFd, QSocketNotifier::Read, this);
+ QObject::connect(ppsNotifier, SIGNAL(activated(int)), this, SLOT(updateMesurementSystem()));
+ }
}
#endif