X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=cd82ee2b8d4f38e0fd87ce3ffdc69e871b0de6b1;hp=f13636c6683542dfafaf1cdfa666e87c0d07e6aa;hb=599218b03a48c53299b6c539208508a25f855164;hpb=d6c4d8ee992a7e7f883b5d1fd9d77f7b340777d7 diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index f13636c6..cd82ee2b 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -41,13 +41,14 @@ TabCompleter::TabCompleter(InputLine *inputLine_) } void TabCompleter::buildCompletionList() { + // ensure a safe state in case we return early. completionMap.clear(); + nextCompletion = completionMap.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()) { - nextCompletion = completionMap.begin(); + if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) return; - } NetworkId networkId = currentIndex.data(NetworkModel::NetworkIdRole).value(); QString channelName = currentIndex.sibling(currentIndex.row(), 0).data().toString(); @@ -70,7 +71,7 @@ void TabCompleter::buildCompletionList() { */ QString tabAbbrev = inputLine->text().left(inputLine->cursorPosition()).section(' ',-1,-1); - QRegExp regex(QString("^[^a-zA-Z]*").append(tabAbbrev), Qt::CaseInsensitive); + QRegExp regex(QString("^[^a-zA-Z]*").append(QRegExp::escape(tabAbbrev)), Qt::CaseInsensitive); foreach(IrcUser *ircUser, channel->ircUsers()) { if(regex.indexIn(ircUser->nick()) > -1) {