diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-03 22:23:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-03 22:23:30 +0300 |
commit | 2b4fecc8a93722d3cb080edcae436c329641937b (patch) | |
tree | 23d2ec5dc93fda645b637de77d42924a87efd33b /src/net/ea/chathandler.cpp | |
parent | 7758b86aaa0d368ef776ad826903a0b3bcc7102c (diff) | |
download | plus-2b4fecc8a93722d3cb080edcae436c329641937b.tar.gz plus-2b4fecc8a93722d3cb080edcae436c329641937b.tar.bz2 plus-2b4fecc8a93722d3cb080edcae436c329641937b.tar.xz plus-2b4fecc8a93722d3cb080edcae436c329641937b.zip |
Fix code style and remove some unused variabled.
Diffstat (limited to 'src/net/ea/chathandler.cpp')
-rw-r--r-- | src/net/ea/chathandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp index 0f0b3214a..ea9d17798 100644 --- a/src/net/ea/chathandler.cpp +++ b/src/net/ea/chathandler.cpp @@ -212,7 +212,7 @@ void ChatHandler::processWhisper(Net::MessageIn &msg) } } else if (chatMsg.length() > 3 - && chatMsg.find("\302\202") == 0) + && chatMsg.find("\302\202") == 0) { chatMsg = chatMsg.erase(0, 2); if (showMsg && chatWindow) |