summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qfutureinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qfutureinterface.h')
-rw-r--r--src/concurrent/qfutureinterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/concurrent/qfutureinterface.h b/src/concurrent/qfutureinterface.h
index 55112ab68d..615b9fbe6a 100644
--- a/src/concurrent/qfutureinterface.h
+++ b/src/concurrent/qfutureinterface.h
@@ -49,7 +49,7 @@
#ifndef QT_NO_QFUTURE
#include <QtCore/qmutex.h>
-#include <QtConcurrent/qtconcurrentexception.h>
+#include <QtCore/qexception.h>
#include <QtConcurrent/qtconcurrentresultstore.h>
QT_BEGIN_HEADER
@@ -83,7 +83,7 @@ public:
void reportFinished();
void reportCanceled();
#ifndef QT_NO_EXCEPTIONS
- void reportException(const QtConcurrent::Exception &e);
+ void reportException(const QException &e);
#endif
void reportResultsReady(int beginIndex, int endIndex);
@@ -122,7 +122,7 @@ public:
void waitForResume();
QMutex *mutex() const;
- QtConcurrent::internal::ExceptionStore &exceptionStore();
+ QtPrivate::ExceptionStore &exceptionStore();
QtConcurrent::ResultStoreBase &resultStoreBase();
const QtConcurrent::ResultStoreBase &resultStoreBase() const;