diff options
author | Svintsov Dmitry <root@uralbash.ru> | 2016-08-22 13:36:22 +0500 |
---|---|---|
committer | Svintsov Dmitry <root@uralbash.ru> | 2016-08-22 15:29:14 +0500 |
commit | ebcfabc3ae4c6326a5924db1137a3728e7e03b82 (patch) | |
tree | d0adec74397dcc54093f54cc4f19c69cc6e7b63c | |
parent | Fix bug (and compiler error) on Windows - wchar username support (diff) | |
download | singleapplication-ebcfabc3ae4c6326a5924db1137a3728e7e03b82.tar.xz |
Added missing "QMutex" dependencies
-rw-r--r-- | singleapplication.cpp | 1 | ||||
-rw-r--r-- | singleapplication_p.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/singleapplication.cpp b/singleapplication.cpp index 4fba93c..b7b7fae 100644 --- a/singleapplication.cpp +++ b/singleapplication.cpp @@ -22,7 +22,6 @@ #include <cstdlib> -#include <QtCore/QMutex> #include <QtCore/QProcess> #include <QtCore/QByteArray> #include <QtCore/QSemaphore> diff --git a/singleapplication_p.h b/singleapplication_p.h index 0769a53..661fe9e 100644 --- a/singleapplication_p.h +++ b/singleapplication_p.h @@ -32,6 +32,7 @@ #ifndef SINGLEAPPLICATION_P_H #define SINGLEAPPLICATION_P_H +#include <QtCore/QMutex> #include <QtCore/QSharedMemory> #include <QtNetwork/QLocalServer> #include <QtNetwork/QLocalSocket> |