modernize: Use override instead of virtual
[quassel.git] / src / client / clientirclisthelper.h
index 9a60ec1..f852c07 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef CLIENTIRCLISTHELPER_H
-#define CLIENTIRCLISTHELPER_H
+#pragma once
 
 #include "irclisthelper.h"
 
-class ClientIrcListHelper : public IrcListHelper {
-  Q_OBJECT
+class ClientIrcListHelper : public IrcListHelper
+{
+    Q_OBJECT
 
 public:
-  inline ClientIrcListHelper(QObject *object = 0) : IrcListHelper(object) {};
-
-  inline virtual const QMetaObject *syncMetaObject() const { return &IrcListHelper::staticMetaObject; }
+    inline ClientIrcListHelper(QObject *object = nullptr) : IrcListHelper(object) {};
 
 public slots:
-  virtual QVariantList requestChannelList(const NetworkId &netId, const QStringList &channelFilters);
-  virtual void receiveChannelList(const NetworkId &netId, const QStringList &channelFilters, const QVariantList &channels);
-  virtual void reportFinishedList(const NetworkId &netId);
+    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<IrcListHelper::ChannelDescription> &channelList);
+    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;
+    NetworkId _netId;
 };
-
-#endif //CLIENTIRCLISTHELPER_H