summaryrefslogtreecommitdiffstats
path: root/tests/auto/qstatemachine
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-04-29 10:20:11 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-04-29 10:20:11 (GMT)
commit6ca9c87235b057bc635576b0c414ca789afaf592 (patch)
tree3ba290fc3edabbb1372dba253cbe5d3526f80f14 /tests/auto/qstatemachine
parent35f353f16f696a7362d3e899c9a7e2066dc09c65 (diff)
downloadQt-6ca9c87235b057bc635576b0c414ca789afaf592.zip
Qt-6ca9c87235b057bc635576b0c414ca789afaf592.tar.gz
Qt-6ca9c87235b057bc635576b0c414ca789afaf592.tar.bz2
rename QBoundEvent to QWrappedEvent and make it public
Result of API review.
Diffstat (limited to 'tests/auto/qstatemachine')
-rw-r--r--tests/auto/qstatemachine/tst_qstatemachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qstatemachine/tst_qstatemachine.cpp b/tests/auto/qstatemachine/tst_qstatemachine.cpp
index 7187b14..b380f6d 100644
--- a/tests/auto/qstatemachine/tst_qstatemachine.cpp
+++ b/tests/auto/qstatemachine/tst_qstatemachine.cpp
@@ -2857,7 +2857,7 @@ void tst_QStateMachine::parallelStateAssignmentsDone()
QState *s1 = new QState(machine.rootState());
machine.setInitialState(s1);
- QState *parallelState = new QState(QState::ParallelGroup, machine.rootState());
+ QState *parallelState = new QState(QState::ParallelStates, machine.rootState());
parallelState->assignProperty(propertyHolder, "foo", 321);
QState *s2 = new QState(parallelState);