summaryrefslogtreecommitdiff
path: root/src/resources/beinginfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-24 16:15:21 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-24 16:15:21 +0300
commit34c821abdad0af3064d7e3ee9585bbbb35953a15 (patch)
treed22ef233454ddc5e1c9769670ec3783d0f02efd8 /src/resources/beinginfo.h
parent38c7345e781e9f6e645f703ffe178849a2140301 (diff)
downloadplus-34c821abdad0af3064d7e3ee9585bbbb35953a15.tar.gz
plus-34c821abdad0af3064d7e3ee9585bbbb35953a15.tar.bz2
plus-34c821abdad0af3064d7e3ee9585bbbb35953a15.tar.xz
plus-34c821abdad0af3064d7e3ee9585bbbb35953a15.zip
add missing const int beinginfo.
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r--src/resources/beinginfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index b776c20ff..d27704aaf 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -212,10 +212,10 @@ class BeingInfo final
void setAvatarId(const uint16_t id)
{ mAvatarId = id; }
- int getWidth() const
+ int getWidth() const A_WARN_UNUSED
{ return mWidth; }
- int getHeight() const
+ int getHeight() const A_WARN_UNUSED
{ return mHeight; }
void setWidth(const int n)
@@ -227,30 +227,30 @@ class BeingInfo final
void setStartFollowDist(const int n)
{ mStartFollowDist = n; }
- int getStartFollowDist()
+ int getStartFollowDist() const A_WARN_UNUSED
{ return mStartFollowDist; }
void setFollowDist(const int n)
{ mFollowDist = n; }
- int getFollowDist()
+ int getFollowDist() const A_WARN_UNUSED
{ return mFollowDist; }
void setWalkSpeed(const int n)
{ mWalkSpeed = n; }
- int getWalkSpeed()
+ int getWalkSpeed() const A_WARN_UNUSED
{ return mWalkSpeed; }
void setWarpDist(const int n)
{ mWarpDist = n; }
- int getWarpDist()
+ int getWarpDist() const A_WARN_UNUSED
{ return mWarpDist; }
void setColorsList(const std::string &name);
- std::string getColor(const int idx) const;
+ std::string getColor(const int idx) const A_WARN_UNUSED;
static void init();