summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentexception.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-02-06 13:45:03 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-06 16:48:22 +0100
commit8cb26f85119e6f11da613c95790c1b2c19f01dbd (patch)
tree4d0019bfc03c23242072dd98e721ea7acbb7e78e /src/concurrent/qtconcurrentexception.h
parent86ee853f47ebe9d9705434ab4311caf20c1db7d6 (diff)
Complete split of QtConcurrent.
- Fix exports. - Fix tests. Acked-by: Thiago Macieira <thiago.macieira@intel.com> Change-Id: I2df923ba74b468f5ee09b3a48ae3d09920751365 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/concurrent/qtconcurrentexception.h')
-rw-r--r--src/concurrent/qtconcurrentexception.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/concurrent/qtconcurrentexception.h b/src/concurrent/qtconcurrentexception.h
index b04e1f2a04..2021e7787c 100644
--- a/src/concurrent/qtconcurrentexception.h
+++ b/src/concurrent/qtconcurrentexception.h
@@ -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() { }