modernize: Use nullptr
[quassel.git] / src / qtui / chatview.h
index 7869ab2..cb34ede 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2013 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  *
@@ -39,8 +39,8 @@ class ChatView : public QGraphicsView, public AbstractChatView
     Q_OBJECT
 
 public:
-    ChatView(MessageFilter *, QWidget *parent = 0);
-    ChatView(BufferId bufferId, QWidget *parent = 0);
+    ChatView(MessageFilter *, QWidget *parent = nullptr);
+    ChatView(BufferId bufferId, QWidget *parent = nullptr);
 
     virtual MsgId lastMsgId() const;
     virtual MsgId lastVisibleMsgId() const;
@@ -117,6 +117,7 @@ private:
     int _scrollOffset;
     bool _invalidateFilter;
     QSet<ChatLine *> _linesWithCache;
+    bool _firstTouchUpdateHappened = false;
 };