X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffer.cpp;h=a316ae15a9086cc8bb8b8c38454876af3a99a868;hp=10f395cf70c22cab1eedfd6108ad42273a056945;hb=c8a1817d1843e987794f95f66ef2da93fa75286f;hpb=50706d89d4d60e258ebb6873d3778383621898e4 diff --git a/src/client/buffer.cpp b/src/client/buffer.cpp index 10f395cf..a316ae15 100644 --- a/src/client/buffer.cpp +++ b/src/client/buffer.cpp @@ -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); -} -