diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-25 12:55:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-25 12:55:31 +0300 |
commit | 5f97d3fd31bb5a17037610342ea09c21da9c47d3 (patch) | |
tree | ad32a4c8835c6b9273414e3b412c44e41270e708 /src/animationparticle.h | |
parent | da457cf152d5aff51d859c18d3668682348dbf7a (diff) | |
download | plus-5f97d3fd31bb5a17037610342ea09c21da9c47d3.tar.gz plus-5f97d3fd31bb5a17037610342ea09c21da9c47d3.tar.bz2 plus-5f97d3fd31bb5a17037610342ea09c21da9c47d3.tar.xz plus-5f97d3fd31bb5a17037610342ea09c21da9c47d3.zip |
change vars and methods to const.
Diffstat (limited to 'src/animationparticle.h')
-rw-r--r-- | src/animationparticle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/animationparticle.h b/src/animationparticle.h index 933f2d164..b284e9fa4 100644 --- a/src/animationparticle.h +++ b/src/animationparticle.h @@ -34,9 +34,9 @@ class SimpleAnimation; class AnimationParticle : public ImageParticle { public: - AnimationParticle(Map *map, Animation *animation); + AnimationParticle(Map *const map, Animation *const animation); - AnimationParticle(Map *map, XmlNodePtr animationNode, + AnimationParticle(Map *const map, XmlNodePtr const animationNode, const std::string& dyePalettes = std::string()); ~AnimationParticle(); |