summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentexception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qtconcurrentexception.h')
-rw-r--r--src/concurrent/qtconcurrentexception.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/concurrent/qtconcurrentexception.h b/src/concurrent/qtconcurrentexception.h
index b04e1f2a04..80926c49c1 100644
--- a/src/concurrent/qtconcurrentexception.h
+++ b/src/concurrent/qtconcurrentexception.h
@@ -42,7 +42,7 @@
#ifndef QTCONCURRENT_EXCEPTION_H
#define QTCONCURRENT_EXCEPTION_H
-#include <QtCore/qglobal.h>
+#include <QtConcurrent/qtconcurrent_global.h>
#ifndef QT_NO_QFUTURE
@@ -62,14 +62,14 @@ namespace QtConcurrent
#ifndef QT_NO_EXCEPTIONS
-class Q_CORE_EXPORT Exception : public std::exception
+class Q_CONCURRENT_EXPORT Exception : public std::exception
{
public:
virtual void raise() const;
virtual Exception *clone() const;
};
-class Q_CORE_EXPORT UnhandledException : public Exception
+class Q_CONCURRENT_EXPORT UnhandledException : public Exception
{
public:
void raise() const;
@@ -90,7 +90,7 @@ public:
QExplicitlySharedDataPointer<Base> base;
};
-class Q_CORE_EXPORT ExceptionStore
+class Q_CONCURRENT_EXPORT ExceptionStore
{
public:
void setException(const Exception &e);
@@ -107,7 +107,7 @@ public:
namespace internal {
-class Q_CORE_EXPORT ExceptionStore
+class Q_CONCURRENT_EXPORT ExceptionStore
{
public:
ExceptionStore() { }