modernize: Use auto where the type is clear from context
[quassel.git] / src / uisupport / actioncollection.h
index 5992eb8..fa1ef24 100644 (file)
@@ -43,7 +43,6 @@ class UISUPPORT_EXPORT ActionCollection : public QObject
 
 public:
     explicit ActionCollection(QObject *parent);
-    virtual ~ActionCollection();
 
     /// Clears the entire action collection, deleting all actions.
     void clear();
@@ -83,7 +82,7 @@ public:
     template<class ActionType>
     ActionType *add(const QString &name, const QObject *receiver = nullptr, const char *member = nullptr)
     {
-        ActionType *a = new ActionType(this);
+        auto *a = new ActionType(this);
         if (receiver && member)
             connect(a, SIGNAL(triggered(bool)), receiver, member);
         addAction(name, a);
@@ -97,7 +96,7 @@ signals:
     void actionTriggered(QAction *action);
 
 protected slots:
-    virtual void connectNotify(const QMetaMethod &signal);
+    void connectNotify(const QMetaMethod &signal) override;
     virtual void slotActionTriggered();
 
 private slots: