summary refs log tree commit diff
path: root/src/TrayIcon.h
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-10 14:38:29 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-10 14:38:45 +0200
commitaf699eb83eddd981537432ab08a1bbe194e30df0 (patch)
tree07723c95231bd32018ea0b26267aab945f92e798 /src/TrayIcon.h
parentTranslated using Weblate (Indonesian) (diff)
downloadnheko-af699eb83eddd981537432ab08a1bbe194e30df0.tar.xz
Mark classes as final where possible
Diffstat (limited to 'src/TrayIcon.h')
-rw-r--r--src/TrayIcon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TrayIcon.h b/src/TrayIcon.h
index 554a4a0a..519f9d14 100644
--- a/src/TrayIcon.h
+++ b/src/TrayIcon.h
@@ -14,7 +14,7 @@
 class QAction;
 class QPainter;
 
-class MsgCountComposedIcon : public QIconEngine
+class MsgCountComposedIcon final : public QIconEngine
 {
 public:
     MsgCountComposedIcon(const QString &filename);
@@ -36,7 +36,7 @@ private:
     QIcon icon_;
 };
 
-class TrayIcon : public QSystemTrayIcon
+class TrayIcon final : public QSystemTrayIcon
 {
     Q_OBJECT
 public: