summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine/qstate.cpp
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-04-29 12:16:51 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-04-29 12:16:51 (GMT)
commit90c9f525bffe2418bc4d246645adca8c731f7774 (patch)
tree8a1a2a18a57751ef2027055adef0fb8c6c26fe19 /src/corelib/statemachine/qstate.cpp
parent6558134ec1dbf13ab56a40b0b269a50e92feb188 (diff)
downloadQt-90c9f525bffe2418bc4d246645adca8c731f7774.zip
Qt-90c9f525bffe2418bc4d246645adca8c731f7774.tar.gz
Qt-90c9f525bffe2418bc4d246645adca8c731f7774.tar.bz2
kill QStateMachine::states() and QState::transitions()
Result of API review. Don't need them (for now).
Diffstat (limited to 'src/corelib/statemachine/qstate.cpp')
-rw-r--r--src/corelib/statemachine/qstate.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/corelib/statemachine/qstate.cpp b/src/corelib/statemachine/qstate.cpp
index 5b49f1f..173cc8d 100644
--- a/src/corelib/statemachine/qstate.cpp
+++ b/src/corelib/statemachine/qstate.cpp
@@ -370,18 +370,6 @@ void QState::removeTransition(QAbstractTransition *transition)
}
/*!
- Returns the list of transitions from this state, or an empty list if there
- are no transitions from this state.
-
- \sa addTransition(), removeTransition()
-*/
-QList<QAbstractTransition*> QState::transitions() const
-{
- Q_D(const QState);
- return d->transitions();
-}
-
-/*!
\reimp
*/
void QState::onEntry()