X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=f9bc1751b3b85fdc0c460092eb3f1513cee7862e;hp=dd042c0852fe50f01009417741a9f35311853d16;hb=87828aeae2510b29619aa79a3bd76885e2c1ebd4;hpb=d6b056e936ec441258d291b7a8af7b83f9f53016 diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index dd042c08..f9bc1751 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -30,7 +30,7 @@ ChatView::ChatView(Buffer *buf, QWidget *parent) : QGraphicsView(parent) { _scene = new ChatScene(buf, this); setScene(_scene); - QGraphicsTextItem *item = scene()->addText(buf->name()); + QGraphicsTextItem *item = scene()->addText(buf->bufferInfo().bufferName()); } @@ -44,7 +44,7 @@ ChatScene *ChatView::scene() const { return _scene; } -/* + void ChatView::clear() { } @@ -56,7 +56,7 @@ void ChatView::prependMsg(AbstractUiMsg *msg) { } void ChatView::prependChatLine(ChatLine *line) { - qDebug() << "prepending"; + //qDebug() << "prepending"; } void ChatView::prependChatLines(QList clist) { @@ -70,7 +70,7 @@ void ChatView::appendMsg(AbstractUiMsg *msg) { } void ChatView::appendChatLine(ChatLine *line) { - qDebug() << "appending"; + //qDebug() << "appending"; } @@ -84,4 +84,4 @@ void ChatView::setContents(QList list) { qDebug() << "setting" << list.count(); appendChatLines(list); } -*/ +