diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-07-16 20:32:19 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-07-16 20:32:19 +0200 |
commit | d08535efbb33b03ac1c3141ff6cc6fcc388e9f4b (patch) | |
tree | 40e69f4cf5f110dbe5fab9efecd12ce7eeca876a | |
parent | Fix verification error codes (diff) | |
download | nheko-d08535efbb33b03ac1c3141ff6cc6fcc388e9f4b.tar.xz |
Remove final which breaks type registration
-rw-r--r-- | src/Clipboard.h | 2 | ||||
-rw-r--r-- | src/encryption/SelfVerificationStatus.h | 2 | ||||
-rw-r--r-- | src/ui/NhekoGlobalObject.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Clipboard.h b/src/Clipboard.h index 8bf89c22..e3321c02 100644 --- a/src/Clipboard.h +++ b/src/Clipboard.h @@ -8,7 +8,7 @@ #include <QQmlEngine> #include <QString> -class Clipboard final : public QObject +class Clipboard : public QObject { Q_OBJECT QML_ELEMENT diff --git a/src/encryption/SelfVerificationStatus.h b/src/encryption/SelfVerificationStatus.h index c65fffd0..8d28f46a 100644 --- a/src/encryption/SelfVerificationStatus.h +++ b/src/encryption/SelfVerificationStatus.h @@ -7,7 +7,7 @@ #include <QObject> #include <QQmlEngine> -class SelfVerificationStatus final : public QObject +class SelfVerificationStatus : public QObject { Q_OBJECT diff --git a/src/ui/NhekoGlobalObject.h b/src/ui/NhekoGlobalObject.h index 91210c54..c1f3579c 100644 --- a/src/ui/NhekoGlobalObject.h +++ b/src/ui/NhekoGlobalObject.h @@ -16,7 +16,7 @@ #include "Theme.h" #include "UserProfile.h" -class Nheko final : public QObject +class Nheko : public QObject { Q_OBJECT |