summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentrunbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qtconcurrentrunbase.h')
-rw-r--r--src/concurrent/qtconcurrentrunbase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/concurrent/qtconcurrentrunbase.h b/src/concurrent/qtconcurrentrunbase.h
index 02ce30a7f5..897345f239 100644
--- a/src/concurrent/qtconcurrentrunbase.h
+++ b/src/concurrent/qtconcurrentrunbase.h
@@ -104,10 +104,10 @@ public:
#endif
this->runFunctor();
#ifndef QT_NO_EXCEPTIONS
- } catch (QtConcurrent::Exception &e) {
+ } catch (QException &e) {
QFutureInterface<T>::reportException(e);
} catch (...) {
- QFutureInterface<T>::reportException(QtConcurrent::UnhandledException());
+ QFutureInterface<T>::reportException(QUnhandledException());
}
#endif
@@ -132,10 +132,10 @@ public:
#endif
this->runFunctor();
#ifndef QT_NO_EXCEPTIONS
- } catch (QtConcurrent::Exception &e) {
+ } catch (QException &e) {
QFutureInterface<void>::reportException(e);
} catch (...) {
- QFutureInterface<void>::reportException(QtConcurrent::UnhandledException());
+ QFutureInterface<void>::reportException(QUnhandledException());
}
#endif
this->reportFinished();