diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-10 14:38:29 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-10 14:38:45 +0200 |
commit | af699eb83eddd981537432ab08a1bbe194e30df0 (patch) | |
tree | 07723c95231bd32018ea0b26267aab945f92e798 /src/TrayIcon.h | |
parent | Translated using Weblate (Indonesian) (diff) | |
download | nheko-af699eb83eddd981537432ab08a1bbe194e30df0.tar.xz |
Mark classes as final where possible
Diffstat (limited to 'src/TrayIcon.h')
-rw-r--r-- | src/TrayIcon.h | 4 |
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: |