diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
commit | 3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9 (patch) | |
tree | 2053748aba4fd1e01020effe9322757426354d28 /src/gui/popups | |
parent | 2577a25f8a4acf587526809fda2ded95875e1222 (diff) | |
download | plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.gz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.bz2 plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.xz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.zip |
Add missing const in gui directory.
Diffstat (limited to 'src/gui/popups')
-rw-r--r-- | src/gui/popups/beingpopup.cpp | 10 | ||||
-rw-r--r-- | src/gui/popups/skillpopup.cpp | 2 | ||||
-rw-r--r-- | src/gui/popups/skillpopup.h | 2 |
3 files changed, 8 insertions, 6 deletions
diff --git a/src/gui/popups/beingpopup.cpp b/src/gui/popups/beingpopup.cpp index 7386ab055..d8d92f388 100644 --- a/src/gui/popups/beingpopup.cpp +++ b/src/gui/popups/beingpopup.cpp @@ -169,7 +169,7 @@ void BeingPopup::show(const int x, const int y, Being *const b) const ActorTypeT type = b->getType(); if (type == ActorType::Pet) { - PetInfo *const info = PlayerInfo::getPet(); + const PetInfo *const info = PlayerInfo::getPet(); if (info) { // TRANSLATORS: being popup label @@ -190,7 +190,7 @@ void BeingPopup::show(const int x, const int y, Being *const b) } else if (type == ActorType::Homunculus) { - HomunculusInfo *const info = PlayerInfo::getHomunculus(); + const HomunculusInfo *const info = PlayerInfo::getHomunculus(); if (info) { // TRANSLATORS: being popup label @@ -321,8 +321,10 @@ void BeingPopup::show(const int x, const int y, Being *const b) std::string effectsStr; FOR_EACH (std::set<int>::const_iterator, it, effects) { - StatusEffect *const effect = StatusEffect::getStatusEffect( - *it, Enable_true); + const StatusEffect *const effect = + StatusEffect::getStatusEffect( + *it, + Enable_true); if (!effect) continue; if (!effectsStr.empty()) diff --git a/src/gui/popups/skillpopup.cpp b/src/gui/popups/skillpopup.cpp index 68fb42454..879e48a80 100644 --- a/src/gui/popups/skillpopup.cpp +++ b/src/gui/popups/skillpopup.cpp @@ -85,7 +85,7 @@ SkillPopup::~SkillPopup() } void SkillPopup::show(const SkillInfo *const skill, - int level) + const int level) { if (!skill || !skill->data || diff --git a/src/gui/popups/skillpopup.h b/src/gui/popups/skillpopup.h index b5c47f808..ab170002f 100644 --- a/src/gui/popups/skillpopup.h +++ b/src/gui/popups/skillpopup.h @@ -55,7 +55,7 @@ class SkillPopup final : public Popup * Sets the info to be displayed given a particular item. */ void show(const SkillInfo *const skill, - int level); + const int level); void mouseMoved(MouseEvent &event) override final; |