Mark classes as final where possible

This commit is contained in:
Nicolas Werner 2022-10-10 14:38:29 +02:00
parent 00cc9a09a5
commit af699eb83e
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
51 changed files with 72 additions and 72 deletions

View file

@ -9,7 +9,7 @@
#include <QAbstractListModel>
#include <QVector>
class Invitee : public QObject
class Invitee final : public QObject
{
Q_OBJECT
@ -27,7 +27,7 @@ private:
friend class InviteesModel;
};
class InviteesModel : public QAbstractListModel
class InviteesModel final : public QAbstractListModel
{
Q_OBJECT