diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-26 20:08:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-28 21:17:59 +0300 |
commit | c430b75e370a21a17f80d4ba3acd84111828a462 (patch) | |
tree | 6d4ea8421de26c623c4196a7dd2aa3d86c5add01 /src/animatedsprite.h | |
parent | 1dcb42c708c92216c7c9cacd3d3c9301e71e6006 (diff) | |
download | plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.gz plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.bz2 plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.xz plus-c430b75e370a21a17f80d4ba3acd84111828a462.zip |
add const for methods return values.
Diffstat (limited to 'src/animatedsprite.h')
-rw-r--r-- | src/animatedsprite.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/animatedsprite.h b/src/animatedsprite.h index 89fef3195..6ca44bb80 100644 --- a/src/animatedsprite.h +++ b/src/animatedsprite.h @@ -91,7 +91,7 @@ class AnimatedSprite final : public Sprite void setAlpha(float alpha) override; - void *getHash() override A_WARN_UNUSED; + const void *getHash() const override A_WARN_UNUSED; bool updateNumber(const unsigned num); @@ -135,7 +135,7 @@ class AnimatedSprite final : public Sprite unsigned int mFrameTime; /**< The time since start of frame. */ SpriteDef *mSprite; /**< The sprite definition. */ - Action *mAction; /**< The currently active action. */ + const Action *mAction; /**< The currently active action. */ Animation *mAnimation; /**< The currently active animation. */ Frame *mFrame; /**< The currently active frame. */ unsigned mNumber; |