diff options
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 1829a55ba..0d45590ba 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -718,7 +718,7 @@ void ChatWindow::keyPressed(gcn::KeyEvent &event) mChatInput->isVisible()) { ChatTab *tab = getFocused(); - if (tab && (unsigned)tab->getRows().size() > 0) + if (tab && tab->hasRows()) { if (!mChatHistoryIndex) { @@ -750,7 +750,7 @@ void ChatWindow::keyPressed(gcn::KeyEvent &event) mChatInput->isVisible()) { ChatTab *tab = getFocused(); - if (tab && !tab->getRows().empty()) + if (tab && tab->hasRows()) { if (mChatHistoryIndex + 1 < tab->getRows().size()) { |