X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Ftabcompleter.cpp;h=3493b29a26350053d34b0b2303f04efdb4b282f9;hb=d1c517f3be0e4457f363f74a474a8a47bdd4a5cf;hp=547bba08999f4a1c18450e4fb92e4217944eed3b;hpb=86a93bd97a174c311656cc4e3bc00036e7bcf3b7;p=quassel.git 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;