diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-21 19:30:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-21 19:30:40 +0300 |
commit | f3ac812e2079eac53c1a9db56541d7103bd14a61 (patch) | |
tree | 3a9a9e9deebdbbb44da32ad4b1656743c4ff80c1 /src/gui/windows/chatwindow.cpp | |
parent | f61f794776fd37223c0977437a6bfcfef6759f84 (diff) | |
download | ManaVerse-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.gz ManaVerse-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.bz2 ManaVerse-f3ac812e2079eac53c1a9db56541d7103bd14a61.tar.xz ManaVerse-f3ac812e2079eac53c1a9db56541d7103bd14a61.zip |
Fix code style.
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index d5c2677ac..6066170d2 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -803,11 +803,12 @@ void ChatWindow::keyPressed(KeyEvent &event) else if (actionId == InputAction::GUI_INSERT && !mChatInput->getText().empty()) { + const std::string str = mChatInput->getText(); // Add the current message to the history and clear the text - if (mHistory.empty() || mChatInput->getText() != mHistory.back()) - mHistory.push_back(mChatInput->getText()); + if (mHistory.empty() || str != mHistory.back()) + mHistory.push_back(str); mCurHist = mHistory.end(); - mChatInput->setText(""); + mChatInput->setText(std::string()); } else if (actionId == InputAction::GUI_TAB && !mChatInput->getText().empty()) |