replaced Client::fakeInput() with Client::userInpt() (now static but no longer a...
[quassel.git] / src / client / buffer.cpp
index 10f395c..a316ae1 100644 (file)
@@ -32,8 +32,7 @@ Buffer::Buffer(BufferInfo bufferid, QObject *parent)
 }
 
 BufferInfo Buffer::bufferInfo() const {
-  // still needed to process user input... *sigh*
-  // ... and for the gui *sigh* to request the backlogs *sigh*
+  // still needed by the gui *sigh* to request the backlogs *sigh*
   return _bufferInfo;
 }
 
@@ -60,8 +59,3 @@ bool Buffer::layoutMsg() {
   return layoutQueue.count();
 }
 
-void Buffer::processUserInput(QString msg) {
-  // TODO User Input processing (plugins) -> well, this goes through MainWin into Core for processing... so...
-  emit userInput(_bufferInfo, msg);
-}
-