X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fqtui.cpp;h=fb1bd50b518cc4198136bd30042ffd64de253386;hb=a1d785ae12b3ec04b43e243f3397bb6f8ecf60d5;hp=a6e7ddf4808df46e032f9a74233dc1ff6f5ad991;hpb=dfbd0465f2a58eee4771472afd261869e5e5c400;p=quassel.git diff --git a/src/qtui/qtui.cpp b/src/qtui/qtui.cpp index a6e7ddf4..fb1bd50b 100644 --- a/src/qtui/qtui.cpp +++ b/src/qtui/qtui.cpp @@ -22,6 +22,7 @@ #include "chatlinemodel.h" #include "mainwin.h" +#include "qtuimessageprocessor.h" QtUiStyle *QtUi::_style; @@ -52,8 +53,8 @@ MessageModel *QtUi::createMessageModel(QObject *parent) { return new ChatLineModel(parent); } -AbstractUiMsg *QtUi::layoutMsg(const Message &msg) { - return 0; // FIXME obsolete? +AbstractMessageProcessor *QtUi::createMessageProcessor(QObject *parent) { + return new QtUiMessageProcessor(parent); } void QtUi::connectedToCore() {