summaryrefslogtreecommitdiffstats
path: root/src/corelib/concurrent
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@digia.com>2011-09-19 10:52:32 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-09-19 10:54:22 +0200
commitf92fc0cdbf8ec0f760c45925e3300c6c9091f1ad (patch)
treeb6a4a5e692a6bfe86b9c99fa3a5b58651dd2f8ac /src/corelib/concurrent
parent9b2ef45e8109dcdfce16c6c41ae38476f8aac8df (diff)
Fix compile issue when building with QT_NO_CONCURRENT and QT_NO_FUTURE
This solves a build issue on Solaris as the symbols were missing so they are now added in the expected way after discussion with the Nokia developer who approved the patch originally for winscw. Task-number: QTBUG-21523 Merge-request: 1389 Reviewed-by: ossi
Diffstat (limited to 'src/corelib/concurrent')
-rw-r--r--src/corelib/concurrent/qfuturewatcher.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/concurrent/qfuturewatcher.cpp b/src/corelib/concurrent/qfuturewatcher.cpp
index 0bef4a6d16..a70f56b33c 100644
--- a/src/corelib/concurrent/qfuturewatcher.cpp
+++ b/src/corelib/concurrent/qfuturewatcher.cpp
@@ -600,5 +600,8 @@ void QFutureWatcherBase::setPaused(bool) { }
void QFutureWatcherBase::pause() { }
void QFutureWatcherBase::resume() { }
void QFutureWatcherBase::togglePaused() { }
+bool QFutureWatcherBase::event(QEvent *) { return false; }
+void QFutureWatcherBase::connectNotify(const char *) { }
+void QFutureWatcherBase::disconnectNotify(const char *) { }
#endif // QT_NO_QFUTURE