diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-25 03:08:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-25 03:08:37 +0300 |
commit | 39029943851dfc318fabb95357e00b81d2735547 (patch) | |
tree | dfd195791587c51e6dca166dda8a016a1760d3bf /src/commands.cpp | |
parent | 10f59701112130cf953a2af7ef4ae82d9d823fe6 (diff) | |
download | plus-39029943851dfc318fabb95357e00b81d2735547.tar.gz plus-39029943851dfc318fabb95357e00b81d2735547.tar.bz2 plus-39029943851dfc318fabb95357e00b81d2735547.tar.xz plus-39029943851dfc318fabb95357e00b81d2735547.zip |
Improve empty strings manipulation.
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 31e3d3fe2..600b86f4b 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -307,7 +307,7 @@ impHandler(msg) else { recvnick = std::string(args); - msg = ""; + msg.clear(); } } @@ -1164,7 +1164,7 @@ void replaceVars(std::string &str) if (str.find("<PEOPLE>") != std::string::npos) { StringVect names; - std::string newStr = ""; + std::string newStr; actorSpriteManager->getPlayerNames(names, false); for (StringVectCIter it = names.begin(), it_end = names.end(); it != it_end; ++ it) @@ -1182,7 +1182,7 @@ void replaceVars(std::string &str) if (str.find("<PARTY>") != std::string::npos) { StringVect names; - std::string newStr = ""; + std::string newStr; const Party *party = nullptr; if (player_node->isInParty() && (party = player_node->getParty())) { |