diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-16 12:07:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-16 12:07:38 +0300 |
commit | cf9b1182f06b1336f0d1071c267ea36c990430fa (patch) | |
tree | 56adfed2bb031a4a45380db53cda3f5a9eb6a2e9 | |
parent | a8df8e90356a048c48ac5ea1a1a8649a1a5b742b (diff) | |
download | plus-cf9b1182f06b1336f0d1071c267ea36c990430fa.tar.gz plus-cf9b1182f06b1336f0d1071c267ea36c990430fa.tar.bz2 plus-cf9b1182f06b1336f0d1071c267ea36c990430fa.tar.xz plus-cf9b1182f06b1336f0d1071c267ea36c990430fa.zip |
Add missing consts into item.
-rw-r--r-- | src/item.cpp | 9 | ||||
-rw-r--r-- | src/item.h | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/item.cpp b/src/item.cpp index fe2fcaa92..02c5d0c16 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -92,11 +92,12 @@ void Item::setId(const int id, const unsigned char color) } } -bool Item::isHaveTag(const int tagId) +bool Item::isHaveTag(const int tagId) const { - if (mTags.find(tagId) == mTags.end()) + const std::map <int, int>::const_iterator it = mTags.find(tagId); + if (it == mTags.end()) return false; - return mTags[tagId] > 0; + return (*it).second > 0; } Image *Item::getImage(const int id, const unsigned char color) @@ -112,7 +113,7 @@ Image *Item::getImage(const int id, const unsigned char color) return image; } -std::string Item::getName() +std::string Item::getName() const { const ItemInfo &info = ItemDB::get(mId); if (serverVersion > 0) diff --git a/src/item.h b/src/item.h index adb6ec03e..dc4600d8b 100644 --- a/src/item.h +++ b/src/item.h @@ -153,12 +153,12 @@ class Item const ItemInfo &getInfo() const A_WARN_UNUSED { return ItemDB::get(mId); } - std::string getName() A_WARN_UNUSED; + std::string getName() const A_WARN_UNUSED; static Image *getImage(const int id, const unsigned char color) A_WARN_UNUSED; - bool isHaveTag(const int tagId) A_WARN_UNUSED; + bool isHaveTag(const int tagId) const A_WARN_UNUSED; unsigned char getColor() const A_WARN_UNUSED { return mColor; } |