X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientirclisthelper.h;h=a1961ec86ecb70c6860d22add6a6bf13ba9b55c3;hb=e38846f054ad1766f2e91992a57bbaffd33c7c06;hp=d4dc98d0037edb93371eb88f06147c0a8d956dff;hpb=fcacaaf16551524c7ebb6114254d005274cc3d63;p=quassel.git diff --git a/src/client/clientirclisthelper.h b/src/client/clientirclisthelper.h index d4dc98d0..a1961ec8 100644 --- a/src/client/clientirclisthelper.h +++ b/src/client/clientirclisthelper.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 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 * @@ -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 NetworkId& netId) override; + inline void reportError(const QString& error) override { emit errorReported(error); } signals: - void channelListReceived(const NetworkId &netId, const QStringList &channelFilters, const QList &channelList); - void finishedListReported(const NetworkId &netId); - void errorReported(const QString &error); + void channelListReceived(const NetworkId& netId, + const QStringList& channelFilters, + const QList& channelList); + void finishedListReported(const NetworkId& netId); + void errorReported(const QString& error); private: NetworkId _netId;