summaryrefslogtreecommitdiffstats
path: root/examples/animation/sub-attaq/states.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-18 06:40:15 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-18 06:40:15 (GMT)
commit0add74a9339a9d7dda302aa4f31cbb50bdb69908 (patch)
tree9d2c767bee200cb79f81aed24551bcb1989eefb7 /examples/animation/sub-attaq/states.h
parentc22504ae79b45268d603c2b2bc66bd2a59c331c7 (diff)
parent3769beacd9126b567f6a42e6c357a7eda004a602 (diff)
downloadQt-0add74a9339a9d7dda302aa4f31cbb50bdb69908.zip
Qt-0add74a9339a9d7dda302aa4f31cbb50bdb69908.tar.gz
Qt-0add74a9339a9d7dda302aa4f31cbb50bdb69908.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples/animation/sub-attaq/states.h')
-rw-r--r--examples/animation/sub-attaq/states.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/animation/sub-attaq/states.h b/examples/animation/sub-attaq/states.h
index 27beb71..a1cb5ff 100644
--- a/examples/animation/sub-attaq/states.h
+++ b/examples/animation/sub-attaq/states.h
@@ -152,7 +152,7 @@ class UpdateScoreTransition : public QSignalTransition
public:
UpdateScoreTransition(GraphicsScene *scene, PlayState *game, QAbstractState *target);
protected:
- virtual bool eventTest(QEvent *event) const;
+ virtual bool eventTest(QEvent *event);
private:
PlayState * game;
GraphicsScene *scene;
@@ -164,7 +164,7 @@ class WinTransition : public QSignalTransition
public:
WinTransition(GraphicsScene *scene, PlayState *game, QAbstractState *target);
protected:
- virtual bool eventTest(QEvent *event) const;
+ virtual bool eventTest(QEvent *event);
private:
PlayState * game;
GraphicsScene *scene;
@@ -176,7 +176,7 @@ private:
public:
CustomSpaceTransition(QWidget *widget, PlayState *game, QEvent::Type type, int key);
protected:
- virtual bool eventTest(QEvent *event) const;
+ virtual bool eventTest(QEvent *event);
private:
PlayState *game;
int key;