diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-08 18:46:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-08 23:41:37 +0300 |
commit | f2f7f680a135bbbc94f29268a92e77cc18e5f238 (patch) | |
tree | 8a0269a9d4e670dc810cbb14ca6139b358b3ab35 /src/gui/windows | |
parent | 763e91044a4e9c8905ee082457cb42da36a38cc0 (diff) | |
download | plus-f2f7f680a135bbbc94f29268a92e77cc18e5f238.tar.gz plus-f2f7f680a135bbbc94f29268a92e77cc18e5f238.tar.bz2 plus-f2f7f680a135bbbc94f29268a92e77cc18e5f238.tar.xz plus-f2f7f680a135bbbc94f29268a92e77cc18e5f238.zip |
Replace ext.compare to direct string comparison.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 8ef8e9f75..88d4d3fc5 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -1093,7 +1093,7 @@ void ChatWindow::addWhisper(const std::string &restrict nick, toLower(playerName); toLower(tempNick); - if (tempNick.compare(playerName) == 0) + if (tempNick == playerName) return; WhisperTab *tab = nullptr; @@ -1190,7 +1190,7 @@ WhisperTab *ChatWindow::addWhisperTab(const std::string &caption, const TabMap::const_iterator i = mWhispers.find(tempNick); WhisperTab *ret = nullptr; - if (tempNick.compare(playerName) == 0) + if (tempNick == playerName) return nullptr; if (i != mWhispers.end()) @@ -1227,7 +1227,7 @@ WhisperTab *ChatWindow::getWhisperTab(const std::string &nick) const const TabMap::const_iterator i = mWhispers.find(tempNick); WhisperTab *ret = nullptr; - if (tempNick.compare(playerName) == 0) + if (tempNick == playerName) return nullptr; if (i != mWhispers.end()) |