X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.h;h=1aeffc78f195c33930ae2f168deb6c7299f68804;hp=d66ea7ce6df30df6360b5c7865c194854e3fda4f;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=5b164bbc62960cea62a31287f679197b623ad7ac diff --git a/src/qtui/chatview.h b/src/qtui/chatview.h index d66ea7ce..1aeffc78 100644 --- a/src/qtui/chatview.h +++ b/src/qtui/chatview.h @@ -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 * @@ -39,10 +39,10 @@ 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; + MsgId lastMsgId() const override; virtual MsgId lastVisibleMsgId() const; inline AbstractBufferContainer *bufferContainer() const { return _bufferContainer; } inline void setBufferContainer(AbstractBufferContainer *c) { _bufferContainer = c; } @@ -90,9 +90,9 @@ public slots: void jumpToMarkerLine(bool requestBacklog); protected: - virtual bool event(QEvent *event); - virtual void resizeEvent(QResizeEvent *event); - virtual void scrollContentsBy(int dx, int dy); + bool event(QEvent *event) override; + void resizeEvent(QResizeEvent *event) override; + void scrollContentsBy(int dx, int dy) override; protected slots: virtual void verticalScrollbarChanged(int);