modernize: Reformat ALL the source... again!
[quassel.git] / src / client / irclistmodel.h
index 76227bc..0c970a1 100644 (file)
 
 #include "client-export.h"
 
-#include "irclisthelper.h"
-
 #include <QAbstractItemModel>
 
+#include "irclisthelper.h"
+
 class CLIENT_EXPORT IrcListModel : public QAbstractItemModel
 {
     Q_OBJECT
 
 public:
-    IrcListModel(QObject *parent = nullptr);
+    IrcListModel(QObjectparent = nullptr);
 
-    QVariant data(const QModelIndex &index, int role) const override;
-    Qt::ItemFlags flags(const QModelIndex &index) const override;
+    QVariant data(const QModelIndexindex, int role) const override;
+    Qt::ItemFlags flags(const QModelIndexindex) const override;
 
     QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
 
-    QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
+    QModelIndex index(int row, int column, const QModelIndexparent = QModelIndex()) const override;
 
-    inline QModelIndex parent(const QModelIndex &) const override { return {}; }
+    inline QModelIndex parent(const QModelIndex&) const override { return {}; }
 
-    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; }
+    inline int rowCount(const QModelIndexparent = QModelIndex()) const override { Q_UNUSED(parent) return _channelList.count(); }
+    inline int columnCount(const QModelIndexparent = QModelIndex()) const override { Q_UNUSED(parent) return 3; }
 
 public slots:
-    void setChannelList(const QList<IrcListHelper::ChannelDescription> &channelList = QList<IrcListHelper::ChannelDescription>());
+    void setChannelList(const QList<IrcListHelper::ChannelDescription>channelList = QList<IrcListHelper::ChannelDescription>());
 
 private:
     QList<IrcListHelper::ChannelDescription> _channelList;