diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-18 18:56:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-18 19:07:49 +0300 |
commit | e85c6227064c905945a4d49a5e11a0078243a1ac (patch) | |
tree | 01cab11bccef2c2b47f78d1f32884f6e199db2bd /src/being/localplayer.h | |
parent | 3c7d4f339c20bc665efa6f6666171f0ca610203b (diff) | |
download | plus-e85c6227064c905945a4d49a5e11a0078243a1ac.tar.gz plus-e85c6227064c905945a4d49a5e11a0078243a1ac.tar.bz2 plus-e85c6227064c905945a4d49a5e11a0078243a1ac.tar.xz plus-e85c6227064c905945a4d49a5e11a0078243a1ac.zip |
add missing const in being classes.
Diffstat (limited to 'src/being/localplayer.h')
-rw-r--r-- | src/being/localplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/localplayer.h b/src/being/localplayer.h index 5e0cf9ea6..abc4644e2 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -374,7 +374,7 @@ class LocalPlayer final : public Being, */ void optionChanged(const std::string &value) override; - void processEvent(Channels channel, + void processEvent(const Channels channel, const DepricatedEvent &event) override; /** @@ -468,7 +468,7 @@ class LocalPlayer final : public Being, void updateStatus() const; void setTestParticle(const std::string &fileName, - bool updateHash = true); + const bool updateHash = true); std::string getInvertDirectionString(); |