Yet another debugging version of the tabcompleter. Please test and tell us if/when...
[quassel.git] / src / uisupport / tabcompleter.cpp
index 547bba0..3493b29 100644 (file)
@@ -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;