summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2009-11-18 09:42:21 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-11-19 12:59:12 (GMT)
commit58bbab5f4bd2c2d991a4fced685488c0eb885631 (patch)
tree5ed20739130c22e8a962cc30c4f119ff4efd2b2e /src
parentde5f29a12ec94a14f75b77a85df6b020cc92b180 (diff)
downloadQt-58bbab5f4bd2c2d991a4fced685488c0eb885631.zip
Qt-58bbab5f4bd2c2d991a4fced685488c0eb885631.tar.gz
Qt-58bbab5f4bd2c2d991a4fced685488c0eb885631.tar.bz2
Export QStateMachine::WrappedEvent and QStateMachine::SignalEvent
These two classes were missing exports. Since the accessors are inline, the bug would only be visible when someone tried to call the constructors of the classes. Reviewed-by: Kent Hansen (cherry picked from commit c7135e9b8d76e50daaa38d5d163687357878dc24)
Diffstat (limited to 'src')
-rw-r--r--src/corelib/statemachine/qstatemachine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/statemachine/qstatemachine.h b/src/corelib/statemachine/qstatemachine.h
index 36c6c87..ce856c9 100644
--- a/src/corelib/statemachine/qstatemachine.h
+++ b/src/corelib/statemachine/qstatemachine.h
@@ -70,7 +70,7 @@ class Q_CORE_EXPORT QStateMachine : public QState
Q_PROPERTY(bool animated READ isAnimated WRITE setAnimated)
#endif
public:
- class SignalEvent : public QEvent
+ class Q_CORE_EXPORT SignalEvent : public QEvent
{
public:
SignalEvent(QObject *sender, int signalIndex,
@@ -89,7 +89,7 @@ public:
friend class QSignalTransitionPrivate;
};
- class WrappedEvent : public QEvent
+ class Q_CORE_EXPORT WrappedEvent : public QEvent
{
public:
WrappedEvent(QObject *object, QEvent *event);