X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=3493b29a26350053d34b0b2303f04efdb4b282f9;hp=547bba08999f4a1c18450e4fb92e4217944eed3b;hb=17fa75dd07c1da977c11900fcbed89f77a962857;hpb=2f11200e02c352180b1e7546ae1c88b08566275c diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 547bba08..3493b29a 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -55,12 +55,15 @@ void TabCompleter::buildCompletionList() { if(!channel) return; + // FIXME commented for debugging + /* disconnect(this, SLOT(ircUserJoinedOrParted(IrcUser *))); connect(channel, SIGNAL(ircUserJoined(IrcUser *)), this, SLOT(ircUserJoinedOrParted(IrcUser *))); connect(channel, SIGNAL(ircUserParted(IrcUser *)), this, SLOT(ircUserJoinedOrParted(IrcUser *))); - + */ + completionList.clear(); QString tabAbbrev = inputLine->text().left(inputLine->cursorPosition()).section(' ',-1,-1); completionList.clear(); @@ -80,7 +83,6 @@ void TabCompleter::ircUserJoinedOrParted(IrcUser *ircUser) { } void TabCompleter::complete() { - return; // FIXME if(!enabled) { buildCompletionList(); enabled = true;