diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-04-29 10:20:11 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-04-29 10:20:11 (GMT) |
commit | 6ca9c87235b057bc635576b0c414ca789afaf592 (patch) | |
tree | 3ba290fc3edabbb1372dba253cbe5d3526f80f14 /tests/auto/qstatemachine | |
parent | 35f353f16f696a7362d3e899c9a7e2066dc09c65 (diff) | |
download | Qt-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.cpp | 2 |
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); |