aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItay Grudev <itay-grudev@users.noreply.github.com>2016-08-22 11:33:43 +0100
committerItay Grudev <itay@grudev.com>2016-08-22 11:34:41 +0100
commite14352e84558814f6941090acd98c39f911e2b5b (patch)
treed0adec74397dcc54093f54cc4f19c69cc6e7b63c
parentFix bug (and compiler error) on Windows - wchar username support (diff)
parentAdded missing "QMutex" dependencies (diff)
downloadsingleapplication-e14352e84558814f6941090acd98c39f911e2b5b.tar.xz
Merge pull request #13 from uralbash/master
Added missing "QMutex" dependencies. Thanks to @uralbash.
-rw-r--r--singleapplication.cpp1
-rw-r--r--singleapplication_p.h1
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>