summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-10-08 12:14:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-16 17:10:15 +0200
commitf14e2686949bf969c2b0da76816b71a7167089f9 (patch)
tree3a62eaa9e5bbb58442ba4d5d91af621a9e8ee0bf /examples
parent677825f0bad9ee8fb48edf3d4b18799d298767c5 (diff)
don't erroneously claim that gui support is needed
Change-Id: Ia7b1f02cab9fa0fc9e487ca49d75e85ed0cfee9d Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/threads/semaphores/semaphores.cpp2
-rw-r--r--examples/threads/semaphores/semaphores.pro2
-rw-r--r--examples/threads/waitconditions/waitconditions.cpp2
-rw-r--r--examples/threads/waitconditions/waitconditions.pro2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/threads/semaphores/semaphores.cpp b/examples/threads/semaphores/semaphores.cpp
index f7b25238f6..fb7f1f2376 100644
--- a/examples/threads/semaphores/semaphores.cpp
+++ b/examples/threads/semaphores/semaphores.cpp
@@ -38,7 +38,7 @@
**
****************************************************************************/
-#include <QtGui>
+#include <QtCore>
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/threads/semaphores/semaphores.pro b/examples/threads/semaphores/semaphores.pro
index 71bc5b3f35..7dfe7c3ba0 100644
--- a/examples/threads/semaphores/semaphores.pro
+++ b/examples/threads/semaphores/semaphores.pro
@@ -1,5 +1,5 @@
SOURCES += semaphores.cpp
-QT = core gui
+QT = core
CONFIG -= app_bundle
CONFIG += console
diff --git a/examples/threads/waitconditions/waitconditions.cpp b/examples/threads/waitconditions/waitconditions.cpp
index 3921334d42..6f5f56e737 100644
--- a/examples/threads/waitconditions/waitconditions.cpp
+++ b/examples/threads/waitconditions/waitconditions.cpp
@@ -38,7 +38,7 @@
**
****************************************************************************/
-#include <QtGui>
+#include <QtCore>
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/threads/waitconditions/waitconditions.pro b/examples/threads/waitconditions/waitconditions.pro
index c8de0b3774..7f9491a0b1 100644
--- a/examples/threads/waitconditions/waitconditions.pro
+++ b/examples/threads/waitconditions/waitconditions.pro
@@ -1,4 +1,4 @@
-QT = core gui
+QT = core
CONFIG -= moc app_bundle
CONFIG += console