X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatline.cpp;h=a28f4e84eca13fa6d6d3589bec84bb17ece29237;hp=5213be8a9dd84c3186b805877dbb6183c3436b6d;hb=0789d47e81940cbbdf925466442380063a50ac05;hpb=5cb0dfcd0cb0d5ee49fc4ca0de6c0116134326a7 diff --git a/src/qtui/chatline.cpp b/src/qtui/chatline.cpp index 5213be8a..a28f4e84 100644 --- a/src/qtui/chatline.cpp +++ b/src/qtui/chatline.cpp @@ -35,9 +35,9 @@ ChatLine::ChatLine(int row, QAbstractItemModel *model, QGraphicsItem *parent) : QGraphicsItem(parent), _row(row), // needs to be set before the items - _timestampItem(ChatLineModel::TimestampColumn, model, this), - _senderItem(ChatLineModel::SenderColumn, model, this), - _contentsItem(ChatLineModel::ContentsColumn, model, this), + _timestampItem(model, this), + _senderItem(model, this), + _contentsItem(model, this), _width(0), _height(0), _selection(0) @@ -111,6 +111,8 @@ void ChatLine::setHighlighted(bool highlighted) { } void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { + Q_UNUSED(option); + Q_UNUSED(widget); if(_selection & Highlighted) { painter->fillRect(boundingRect(), QBrush(QtUi::style()->highlightColor())); }