modernize: Reformat ALL the source... again!
[quassel.git] / src / client / clientirclisthelper.h
index d4dc98d..7c32a10 100644 (file)
@@ -29,18 +29,21 @@ class CLIENT_EXPORT ClientIrcListHelper : public IrcListHelper
     Q_OBJECT
 
 public:
-    inline ClientIrcListHelper(QObject *object = nullptr) : IrcListHelper(object) {};
+    inline ClientIrcListHelper(QObject* object = nullptr)
+        : IrcListHelper(object){};
 
 public slots:
-    QVariantList requestChannelList(const NetworkId &netId, const QStringList &channelFilters) override;
-    void receiveChannelList(const NetworkId &netId, const QStringList &channelFilters, const QVariantList &channels) override;
-    void reportFinishedList(const NetworkId &netId) override;
-    inline void reportError(const QString &error) override { emit errorReported(error); }
+    QVariantList requestChannelList(const NetworkId& netId, const QStringList& channelFilters) override;
+    void receiveChannelList(const NetworkId& netId, const QStringList& channelFilters, const QVariantList& channels) override;
+    void reportFinishedList(const NetworkIdnetId) override;
+    inline void reportError(const QStringerror) override { emit errorReported(error); }
 
 signals:
-    void channelListReceived(const NetworkId &netId, const QStringList &channelFilters, const QList<IrcListHelper::ChannelDescription> &channelList);
-    void finishedListReported(const NetworkId &netId);
-    void errorReported(const QString &error);
+    void channelListReceived(const NetworkId& netId,
+                             const QStringList& channelFilters,
+                             const QList<IrcListHelper::ChannelDescription>& channelList);
+    void finishedListReported(const NetworkId& netId);
+    void errorReported(const QString& error);
 
 private:
     NetworkId _netId;