summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfilesystemwatcher_inotify.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-11-12 09:49:13 (GMT)
committerQt Commercial Integration <QtCommercial@digia.com>2012-01-31 10:24:43 (GMT)
commit84c3b3e32612149d128d5288aebdf27badb8d43c (patch)
tree055d676266afc6393da83d8944feca1ede8aa145 /src/corelib/io/qfilesystemwatcher_inotify.cpp
parent62cfd18376a52b99516451e9dcaee6d123091b89 (diff)
downloadQt-84c3b3e32612149d128d5288aebdf27badb8d43c.zip
Qt-84c3b3e32612149d128d5288aebdf27badb8d43c.tar.gz
Qt-84c3b3e32612149d128d5288aebdf27badb8d43c.tar.bz2
QFileSystemWatcher: Do not require QApplication in the destructor.
QThread::quit() is threadsafe, and can safely (and should) be called from the parent thread. Using invokeMethod requires an instance of QCoreApplication. There is no reason we should depend on that. Task-number: QTBUG-15255 Task-number: QT-3305 Reviewed-by: Denis Reviewed-by: Brad
Diffstat (limited to 'src/corelib/io/qfilesystemwatcher_inotify.cpp')
-rw-r--r--src/corelib/io/qfilesystemwatcher_inotify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemwatcher_inotify.cpp b/src/corelib/io/qfilesystemwatcher_inotify.cpp
index 8c81de8..2eec117 100644
--- a/src/corelib/io/qfilesystemwatcher_inotify.cpp
+++ b/src/corelib/io/qfilesystemwatcher_inotify.cpp
@@ -340,7 +340,7 @@ QStringList QInotifyFileSystemWatcherEngine::removePaths(const QStringList &path
void QInotifyFileSystemWatcherEngine::stop()
{
- QMetaObject::invokeMethod(this, "quit");
+ quit();
}
void QInotifyFileSystemWatcherEngine::readFromInotify()