diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-08 00:38:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-08 00:38:33 +0300 |
commit | a4c27efaf039707e29784ae8f828bdd93a5b2935 (patch) | |
tree | 5eb1e41f9d8e692ef8e0f9bdff45c3e2ef00dd69 /src/gui/chatwindow.cpp | |
parent | 524679ca67f977ebadb143205d5c45f798827e67 (diff) | |
download | plus-a4c27efaf039707e29784ae8f828bdd93a5b2935.tar.gz plus-a4c27efaf039707e29784ae8f828bdd93a5b2935.tar.bz2 plus-a4c27efaf039707e29784ae8f828bdd93a5b2935.tar.xz plus-a4c27efaf039707e29784ae8f828bdd93a5b2935.zip |
Fix code style.
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 638d7f81c..960554be1 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -1420,7 +1420,8 @@ void ChatWindow::resortChatLog(std::string line, Own own, if (line.find(": \302\202\302") != std::string::npos) return; line = line.erase(idx + 2, 2); - tradeChatTab->chatLog(line, own, ignoreRecord, tryRemoveColors); + tradeChatTab->chatLog(line, own, ignoreRecord, + tryRemoveColors); return; } } |