diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-03 21:58:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-04 03:06:57 +0300 |
commit | 866a71ffd576fd10c4e309195016d86f0c8ed635 (patch) | |
tree | 21bbec175afc181cada529598267d62f12fcb671 /src/rotationalparticle.h | |
parent | ebecb0cf42f2066943908fa158ac91527e0e6629 (diff) | |
download | plus-866a71ffd576fd10c4e309195016d86f0c8ed635.tar.gz plus-866a71ffd576fd10c4e309195016d86f0c8ed635.tar.bz2 plus-866a71ffd576fd10c4e309195016d86f0c8ed635.tar.xz plus-866a71ffd576fd10c4e309195016d86f0c8ed635.zip |
Add const to more classes.
Diffstat (limited to 'src/rotationalparticle.h')
-rw-r--r-- | src/rotationalparticle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rotationalparticle.h b/src/rotationalparticle.h index 251e3769c..e951e4c77 100644 --- a/src/rotationalparticle.h +++ b/src/rotationalparticle.h @@ -34,9 +34,9 @@ class SimpleAnimation; class RotationalParticle : public ImageParticle { public: - RotationalParticle(Map *map, Animation *animation); + RotationalParticle(Map *const map, Animation *const animation); - RotationalParticle(Map *map, XmlNodePtr animationNode, + RotationalParticle(Map *const map, const XmlNodePtr animationNode, const std::string& dyePalettes = std::string()); ~RotationalParticle(); |