X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftitlesetter.h;h=5e9438fa06c3160bb3e9e82dddcbb9b7d3d51711;hp=09759cdbf0da3cbd84d7e71b018cb49ae015ecc3;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=9d54503555534a2c554f09a33df6afa33d6308ec diff --git a/src/qtui/titlesetter.h b/src/qtui/titlesetter.h index 09759cdb..5e9438fa 100644 --- a/src/qtui/titlesetter.h +++ b/src/qtui/titlesetter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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 * @@ -30,16 +30,15 @@ class TitleSetter : public AbstractItemView Q_OBJECT public: - TitleSetter(MainWin *parent); + TitleSetter(MainWin* parent); protected slots: - virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); - virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); + void currentChanged(const QModelIndex& current, const QModelIndex& previous) override; + void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) override; private: - MainWin *_mainWin; - void changeWindowTitle(const QModelIndex &index); + MainWin* _mainWin; + void changeWindowTitle(const QModelIndex& index); }; - #endif