summaryrefslogtreecommitdiffstats
path: root/examples/statemachine/tankgame/gameovertransition.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/statemachine/tankgame/gameovertransition.h')
-rw-r--r--examples/statemachine/tankgame/gameovertransition.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/statemachine/tankgame/gameovertransition.h b/examples/statemachine/tankgame/gameovertransition.h
index 53c9b86..9a86b83 100644
--- a/examples/statemachine/tankgame/gameovertransition.h
+++ b/examples/statemachine/tankgame/gameovertransition.h
@@ -13,10 +13,10 @@ public:
void addTankItem(TankItem *tankItem);
protected:
- bool eventTest(QEvent *event) const;
+ bool eventTest(QEvent *event);
private:
- mutable QList<TankItem *> m_tankItems;
+ QList<TankItem *> m_tankItems;
};
#endif