From 408028f19cf3abc0738d5ae422eef1f1714f12d8 Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Tue, 1 Jul 2008 21:57:39 +0200 Subject: [PATCH] cleanup --- src/uisupport/tabcompleter.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 63c1ed09..0187e958 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -41,11 +41,12 @@ TabCompleter::TabCompleter(InputLine *inputLine_) void TabCompleter::buildCompletionList() { completionList.clear(); - nextCompletion = completionList.begin(); // this is the first time tab is pressed -> build up the completion list and it's iterator QModelIndex currentIndex = Client::bufferModel()->currentIndex(); - if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) + if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) { + nextCompletion = completionList.begin(); return; + } NetworkId networkId = currentIndex.data(NetworkModel::NetworkIdRole).value(); QString channelName = currentIndex.sibling(currentIndex.row(), 0).data().toString(); @@ -67,9 +68,7 @@ void TabCompleter::buildCompletionList() { this, SLOT(ircUserJoinedOrParted(IrcUser *))); */ - completionList.clear(); QString tabAbbrev = inputLine->text().left(inputLine->cursorPosition()).section(' ',-1,-1); - completionList.clear(); QRegExp regex(QString("^[^a-zA-Z]*").append(tabAbbrev), Qt::CaseInsensitive); QMap sortMap; -- 2.20.1