X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatline.cpp;h=2c3cda571e30b6b759bd43c623fc0d540170f672;hb=714b39660fe19e7f092880019429c8da76ee2bd5;hp=649b7618068cbb74d3fa351c3048eae12638504e;hpb=e6f810169117c836c22ae1146e469e61dec95f6f;p=quassel.git diff --git a/src/qtui/chatline.cpp b/src/qtui/chatline.cpp index 649b7618..2c3cda57 100644 --- a/src/qtui/chatline.cpp +++ b/src/qtui/chatline.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -50,8 +50,8 @@ ChatLine::ChatLine(int row, QAbstractItemModel *model, _width(width), _height(_contentsItem.height()), _selection(0), - _mouseGrabberItem(0), - _hoverItem(0) + _mouseGrabberItem(nullptr), + _hoverItem(nullptr) { Q_ASSERT(model); QModelIndex index = model->index(row, ChatLineModel::ContentsColumn); @@ -78,7 +78,7 @@ ChatItem *ChatLine::item(ChatLineModel::ColumnType column) case ChatLineModel::ContentsColumn: return &_contentsItem; default: - return 0; + return nullptr; } } @@ -91,7 +91,7 @@ ChatItem *ChatLine::itemAt(const QPointF &pos) return &_senderItem; if (_timestampItem.boundingRect().contains(pos)) return &_timestampItem; - return 0; + return nullptr; } @@ -118,7 +118,7 @@ bool ChatLine::sceneEvent(QEvent *event) setMouseGrabberItem(itemAt(linePos)); } else if (event->type() == QEvent::UngrabMouse) { - setMouseGrabberItem(0); + setMouseGrabberItem(nullptr); } return QGraphicsItem::sceneEvent(event); } @@ -215,7 +215,7 @@ void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, const QAbstractItemModel *model_ = model(); QModelIndex myIdx = model_->index(row(), 0); Message::Type type = (Message::Type)myIdx.data(MessageModel::TypeRole).toInt(); - UiStyle::MessageLabel label = myIdx.data(ChatLineModel::MsgLabelRole).value(); + auto label = myIdx.data(ChatLineModel::MsgLabelRole).value(); QTextCharFormat msgFmt = QtUi::style()->format({UiStyle::formatType(type), {}, {}}, label); if (msgFmt.hasProperty(QTextFormat::BackgroundBrush)) { @@ -287,7 +287,7 @@ void ChatLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { if (_hoverItem) { _hoverItem->hoverLeaveEvent(event); - _hoverItem = 0; + _hoverItem = nullptr; } }