1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/UserProfile.h b/src/ui/UserProfile.h
index 90e39b89..facae6ec 100644
--- a/src/ui/UserProfile.h
+++ b/src/ui/UserProfile.h
@@ -32,7 +32,7 @@ Q_ENUM_NS(Status)
class DeviceVerificationFlow;
class TimelineViewManager;
-class UserProfileFetchProxy : public QObject
+class UserProfileFetchProxy final : public QObject
{
Q_OBJECT
@@ -83,7 +83,7 @@ public:
qlonglong lastTs;
};
-class DeviceInfoModel : public QAbstractListModel
+class DeviceInfoModel final : public QAbstractListModel
{
Q_OBJECT
public:
@@ -120,7 +120,7 @@ private:
friend class UserProfile;
};
-class UserProfile : public QObject
+class UserProfile final : public QObject
{
Q_OBJECT
Q_PROPERTY(QString displayName READ displayName NOTIFY displayNameChanged)
|