summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qfutureinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qfutureinterface.cpp')
-rw-r--r--src/concurrent/qfutureinterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/concurrent/qfutureinterface.cpp b/src/concurrent/qfutureinterface.cpp
index 5fc08c9366..1f675525a5 100644
--- a/src/concurrent/qfutureinterface.cpp
+++ b/src/concurrent/qfutureinterface.cpp
@@ -238,7 +238,7 @@ void QFutureInterfaceBase::reportCanceled()
}
#ifndef QT_NO_EXCEPTIONS
-void QFutureInterfaceBase::reportException(const QtConcurrent::Exception &exception)
+void QFutureInterfaceBase::reportException(const QException &exception)
{
QMutexLocker locker(&d->m_mutex);
if ((d->state & Canceled) || (d->state & Finished))
@@ -390,7 +390,7 @@ QMutex *QFutureInterfaceBase::mutex() const
return &d->m_mutex;
}
-QtConcurrent::internal::ExceptionStore &QFutureInterfaceBase::exceptionStore()
+QtPrivate::ExceptionStore &QFutureInterfaceBase::exceptionStore()
{
return d->m_exceptionStore;
}