diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-04-28 11:29:37 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-04-29 06:29:47 (GMT) |
commit | 4f6b9b1779fe33f876f96c196c3feef7e72992a0 (patch) | |
tree | 3131513d79437f85ba411a4c5fe12143b1d62504 /src/corelib/statemachine/qstate.h | |
parent | 9c28c75052a38eb3b317c2ac7ad2a26c73deeb2d (diff) | |
download | Qt-4f6b9b1779fe33f876f96c196c3feef7e72992a0.zip Qt-4f6b9b1779fe33f876f96c196c3feef7e72992a0.tar.gz Qt-4f6b9b1779fe33f876f96c196c3feef7e72992a0.tar.bz2 |
move assignProperty() to QState
Doesn't belong in the abstract base class.
Diffstat (limited to 'src/corelib/statemachine/qstate.h')
-rw-r--r-- | src/corelib/statemachine/qstate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/statemachine/qstate.h b/src/corelib/statemachine/qstate.h index 70211c1..0dd99dc 100644 --- a/src/corelib/statemachine/qstate.h +++ b/src/corelib/statemachine/qstate.h @@ -91,8 +91,12 @@ public: QAbstractState *initialState() const; void setInitialState(QAbstractState *state); + void assignProperty(QObject *object, const char *name, + const QVariant &value); + Q_SIGNALS: void finished(); + void polished(); protected: void onEntry(); |