X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatline.cpp;h=5aba1915bace2498c1f56f955f3b0b06084cefc2;hp=649b7618068cbb74d3fa351c3048eae12638504e;hb=3a3e844f9fcfd12235a0086af75ecd503b621ef4;hpb=e6f810169117c836c22ae1146e469e61dec95f6f diff --git a/src/qtui/chatline.cpp b/src/qtui/chatline.cpp index 649b7618..5aba1915 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); } @@ -287,7 +287,7 @@ void ChatLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { if (_hoverItem) { _hoverItem->hoverLeaveEvent(event); - _hoverItem = 0; + _hoverItem = nullptr; } }