diff options
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 ++; |