diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-06 01:09:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-06 01:09:47 +0300 |
commit | 7fa78a35307227453ab55c7452e348a40cd41d65 (patch) | |
tree | 1d3e16a94bed043877306f1c47b3992add85b3be /src/gui/widgets/skillinfo.cpp | |
parent | a87db81b6b7551a248e31e2850577aefda092538 (diff) | |
download | plus-7fa78a35307227453ab55c7452e348a40cd41d65.tar.gz plus-7fa78a35307227453ab55c7452e348a40cd41d65.tar.bz2 plus-7fa78a35307227453ab55c7452e348a40cd41d65.tar.xz plus-7fa78a35307227453ab55c7452e348a40cd41d65.zip |
Add strong typed bool type Modifiable.
Diffstat (limited to 'src/gui/widgets/skillinfo.cpp')
-rw-r--r-- | src/gui/widgets/skillinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/skillinfo.cpp b/src/gui/widgets/skillinfo.cpp index 864d973ea..80783a4b2 100644 --- a/src/gui/widgets/skillinfo.cpp +++ b/src/gui/widgets/skillinfo.cpp @@ -58,7 +58,7 @@ SkillInfo::SkillInfo() : castingDstEffectId(-1), type(SkillType::Unknown), owner(SkillOwner::Player), - modifiable(false), + modifiable(Modifiable_false), visible(false), alwaysVisible(false) { @@ -78,7 +78,7 @@ void SkillInfo::update() const int baseLevel = PlayerInfo::getSkillLevel(id); const std::pair<int, int> exp = PlayerInfo::getStatExperience(id); - if (!modifiable && baseLevel == 0 && exp.second == 0) + if (modifiable == Modifiable_false && baseLevel == 0 && exp.second == 0) { if (visible) { |