modernize: Use override instead of virtual
[quassel.git] / src / uisupport / abstractnotificationbackend.h
index 7d6b1d9..3655d95 100644 (file)
@@ -53,7 +53,7 @@ public:
     };
 
     inline AbstractNotificationBackend(QObject *parent) : QObject(parent) {};
-    virtual ~AbstractNotificationBackend() {};
+    ~AbstractNotificationBackend() override {};
 
     virtual void notify(const Notification &) = 0;
     virtual void close(uint notificationId) { Q_UNUSED(notificationId); }