X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=be2cbc62debcd9564a20c3c1d4a3c65469b98878;hp=98346ca4638da2905dcc908887722f4f474457e9;hb=0d3d7a861472313710b51c8d19e81af56e2208a1;hpb=b8393cf7150270830deb26e9621f642ffff77d4c diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index 98346ca4..be2cbc62 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -75,40 +75,3 @@ void ChatView::sceneHeightChanged(qreal h) { void ChatView::clear() { } - -void ChatView::prependMsg(AbstractUiMsg *msg) { - //ChatLine *line = dynamic_cast(msg); - //Q_ASSERT(line); - //prependChatLine(line); -} - -void ChatView::prependChatLine(ChatLine *line) { - //qDebug() << "prepending"; -} - -void ChatView::prependChatLines(QList clist) { - -} - -void ChatView::appendMsg(AbstractUiMsg *msg) { - //ChatLine *line = dynamic_cast(msg); - //Q_ASSERT(line); - //appendChatLine(line); -} - -void ChatView::appendChatLine(ChatLine *line) { - //qDebug() << "appending"; -} - - -void ChatView::appendChatLines(QList list) { - //foreach(ChatLine *line, list) { - - //} -} - -void ChatView::setContents(const QList &list) { - //qDebug() << "setting" << list.count(); - //appendChatLines(list); -} -