compile fix if no QFileSystemWatcher is available
Change-Id: I22d0cd90da96e6b6f651768955c7f445dfbcf6bc Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Andrew Knight <andrew.knight@digia.com> Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
This commit is contained in:
parent
60dc35e428
commit
18bb8d6b16
@ -2274,7 +2274,9 @@ Q_GLOBAL_STATIC(QLocale, tst_qapp_locale);
|
||||
#ifndef QT_NO_PROCESS
|
||||
Q_GLOBAL_STATIC(QProcess, tst_qapp_process);
|
||||
#endif
|
||||
#ifndef QT_NO_FILESYSTEMWATCHER
|
||||
Q_GLOBAL_STATIC(QFileSystemWatcher, tst_qapp_fileSystemWatcher);
|
||||
#endif
|
||||
#ifndef QT_NO_SHAREDMEMORY
|
||||
Q_GLOBAL_STATIC(QSharedMemory, tst_qapp_sharedMemory);
|
||||
#endif
|
||||
@ -2297,7 +2299,9 @@ void tst_QApplication::globalStaticObjectDestruction()
|
||||
#ifndef QT_NO_PROCESS
|
||||
QVERIFY(tst_qapp_process());
|
||||
#endif
|
||||
#ifndef QT_NO_FILESYSTEMWATCHER
|
||||
QVERIFY(tst_qapp_fileSystemWatcher());
|
||||
#endif
|
||||
#ifndef QT_NO_SHAREDMEMORY
|
||||
QVERIFY(tst_qapp_sharedMemory());
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user