src: Yearly copyright bump
[quassel.git] / src / qtui / markerlineitem.h
index 1eaa93d..1d75ab2 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2010 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  *
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #ifndef MARKERLINEITEM_H_
@@ -32,18 +32,18 @@ class MarkerLineItem : public QGraphicsObject
     Q_OBJECT
 
 public:
-    MarkerLineItem(qreal sceneWidth, QGraphicsItem *parent = 0);
-    virtual inline int type() const { return ChatScene::MarkerLineType; }
+    MarkerLineItem(qreal sceneWidth, QGraphicsItem* parent = nullptr);
+    inline int type() const override { return ChatScene::MarkerLineType; }
 
-    inline QRectF boundingRect() const { return _boundingRect; }
-    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
+    inline QRectF boundingRect() const override { return _boundingRect; }
+    void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = nullptr) override;
 
-    inline ChatLine *chatLine() const { return _chatLine; }
+    inline ChatLinechatLine() const { return _chatLine; }
 
 public slots:
     //! Set the ChatLine this MarkerLineItem is associated to
-    void setChatLine(ChatLine *line);
-    void sceneRectChanged(const QRectF &);
+    void setChatLine(ChatLineline);
+    void sceneRectChanged(const QRectF&);
 
 private slots:
     void styleChanged();
@@ -51,8 +51,7 @@ private slots:
 private:
     QRectF _boundingRect;
     QBrush _brush;
-    ChatLine *_chatLine;
+    ChatLine_chatLine;
 };
 
-
 #endif