diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-11 21:08:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-11 21:08:02 +0300 |
commit | aef5053e87c93a8987f89e4fdaf6cf3dd23efe81 (patch) | |
tree | 1114d14958b13eba28a51e57722d6c4da0b9d2e7 /src/being | |
parent | a50ecdf6045ba0f0d5e91d10ddeb8d5520ba55cb (diff) | |
download | plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.gz plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.bz2 plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.xz plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.zip |
fix code style.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 2 | ||||
-rw-r--r-- | src/being/localplayer.cpp | 2 | ||||
-rw-r--r-- | src/being/playerrelations.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 9f99a2ab8..621b61d02 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -2003,7 +2003,7 @@ void Being::setSprite(const unsigned int slot, const int id, else { const ItemInfo &info = ItemDB::get(id); - const std::string filename = info.getSprite(mGender, mSubType); + const std::string &filename = info.getSprite(mGender, mSubType); AnimatedSprite *equipmentSprite = nullptr; if (!isTempSprite && mType == PLAYER) diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index c774b985b..b75ee0ebd 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -3639,7 +3639,7 @@ void LocalPlayer::checkNewName(Being *const being) if (!being) return; - const std::string nick = being->getName(); + const std::string &nick = being->getName(); if (being->getType() == ActorSprite::PLAYER) { const Guild *const guild = getGuild(); diff --git a/src/being/playerrelations.cpp b/src/being/playerrelations.cpp index 4404791ca..06815baeb 100644 --- a/src/being/playerrelations.cpp +++ b/src/being/playerrelations.cpp @@ -586,7 +586,7 @@ bool PlayerRelationsManager::isGoodName(Being *const being) const if (being->getGoodStatus() != -1) return (being->getGoodStatus() == 1); - const std::string name = being->getName(); + const std::string &name = being->getName(); const size_t size = name.size(); if (size < 3) |