X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Firclistmodel.h;h=0c970a13a88682301d50a808f824976625d52488;hb=12a6abcfe51ac66e8763b3caadaedcb47c2723f1;hp=5cce869a4312ab686c039de7acb4f81913f3d308;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;p=quassel.git diff --git a/src/client/irclistmodel.h b/src/client/irclistmodel.h index 5cce869a..0c970a13 100644 --- a/src/client/irclistmodel.h +++ b/src/client/irclistmodel.h @@ -22,31 +22,31 @@ #include "client-export.h" -#include "irclisthelper.h" - #include +#include "irclisthelper.h" + class CLIENT_EXPORT IrcListModel : public QAbstractItemModel { Q_OBJECT public: - IrcListModel(QObject *parent = nullptr); + IrcListModel(QObject* parent = nullptr); - virtual QVariant data(const QModelIndex &index, int role) const; - virtual Qt::ItemFlags flags(const QModelIndex &index) const; + QVariant data(const QModelIndex& index, int role) const override; + Qt::ItemFlags flags(const QModelIndex& index) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; - inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); } + inline QModelIndex parent(const QModelIndex&) const override { return {}; } - inline int rowCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return _channelList.count(); } - inline int columnCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return 3; } + inline int rowCount(const QModelIndex& parent = QModelIndex()) const override { Q_UNUSED(parent) return _channelList.count(); } + inline int columnCount(const QModelIndex& parent = QModelIndex()) const override { Q_UNUSED(parent) return 3; } public slots: - void setChannelList(const QList &channelList = QList()); + void setChannelList(const QList& channelList = QList()); private: QList _channelList;