X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmarkerlineitem.h;h=1d75ab23e97662dec09acfd403dcc25dc8762b6a;hb=579e559a6322209df7cd51c34801fecff5fe734b;hp=c77f82c31cb00ea25bda65f1b5abc651b0f0082d;hpb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;p=quassel.git diff --git a/src/qtui/markerlineitem.h b/src/qtui/markerlineitem.h index c77f82c3..1d75ab23 100644 --- a/src/qtui/markerlineitem.h +++ b/src/qtui/markerlineitem.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,18 +32,18 @@ class MarkerLineItem : public QGraphicsObject Q_OBJECT public: - MarkerLineItem(qreal sceneWidth, QGraphicsItem *parent = nullptr); + MarkerLineItem(qreal sceneWidth, QGraphicsItem* parent = nullptr); inline int type() const override { return ChatScene::MarkerLineType; } inline QRectF boundingRect() const override { return _boundingRect; } - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr) override; + void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = nullptr) override; - inline ChatLine *chatLine() const { return _chatLine; } + inline ChatLine* chatLine() const { return _chatLine; } public slots: //! Set the ChatLine this MarkerLineItem is associated to - void setChatLine(ChatLine *line); - void sceneRectChanged(const QRectF &); + void setChatLine(ChatLine* line); + void sceneRectChanged(const QRectF&); private slots: void styleChanged(); @@ -51,8 +51,7 @@ private slots: private: QRectF _boundingRect; QBrush _brush; - ChatLine *_chatLine; + ChatLine* _chatLine; }; - #endif