diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-07 14:57:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-07 21:38:21 +0300 |
commit | ae550d179c25e149f7e8a8d70011b364fb0d85d6 (patch) | |
tree | c4dabe3e38afc8b343e3946202eb6fa5f30a18a9 /src/gui/chatwindow.cpp | |
parent | 2566e68d2502d39c9f7c9d83ce4b281e2834fe29 (diff) | |
download | plus-ae550d179c25e149f7e8a8d70011b364fb0d85d6.tar.gz plus-ae550d179c25e149f7e8a8d70011b364fb0d85d6.tar.bz2 plus-ae550d179c25e149f7e8a8d70011b364fb0d85d6.tar.xz plus-ae550d179c25e149f7e8a8d70011b364fb0d85d6.zip |
some fixes after auto check.
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 0bc3b9edc..88c9936fe 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -883,7 +883,7 @@ void ChatWindow::keyPressed(gcn::KeyEvent &event) ChatTab *const tab = getFocused(); if (tab && tab->hasRows()) { - const size_t tabSize = tab->getRows().size(); + const size_t &tabSize = tab->getRows().size(); if (mChatHistoryIndex + 1 < tabSize) { mChatHistoryIndex ++; |