summaryrefslogtreecommitdiffstats
path: root/tests/auto/qstate
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qstate')
-rw-r--r--tests/auto/qstate/tst_qstate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qstate/tst_qstate.cpp b/tests/auto/qstate/tst_qstate.cpp
index f082caf..bb7de20 100644
--- a/tests/auto/qstate/tst_qstate.cpp
+++ b/tests/auto/qstate/tst_qstate.cpp
@@ -260,7 +260,7 @@ protected:
return e->type() == m_type;
}
- void onTransition() {}
+ void onTransition(QEvent *) {}
private:
QEvent::Type m_type;
@@ -274,7 +274,7 @@ void tst_QState::historyInitialState()
QState *s1 = new QState(machine.rootState());
QState *s2 = new QState(machine.rootState());
- QHistoryState *h1 = s2->addHistoryState();
+ QHistoryState *h1 = new QHistoryState(s2);
s2->setInitialState(h1);