diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-04 19:11:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-04 19:11:53 +0300 |
commit | 3a407bb6b73a186eafd99bcec570f88097c4b2e1 (patch) | |
tree | ea57a752c348ba0a883294855ad3c62c16e9749d /src/textparticle.h | |
parent | 872fc368f7b253f26714fc47323064f270b62b40 (diff) | |
download | plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.gz plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.bz2 plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.xz plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.zip |
Add const to more classes.
Diffstat (limited to 'src/textparticle.h')
-rw-r--r-- | src/textparticle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textparticle.h b/src/textparticle.h index f136be78a..55c8eab9d 100644 --- a/src/textparticle.h +++ b/src/textparticle.h @@ -31,9 +31,9 @@ class TextParticle : public Particle /** * Constructor. */ - TextParticle(Map *map, const std::string &text, - const gcn::Color* color, - gcn::Font *font, bool outline = false); + TextParticle(Map *const map, const std::string &text, + const gcn::Color *const color, + gcn::Font *const font, const bool outline = false); /** * Draws the particle image. |