Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Dec 30, 2023
1 parent 9ddc3d4 commit 2294739
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/accountsservice/usersmodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ class QT6ACCOUNTSSERVICE_EXPORT UsersModel : public QAbstractListModel

explicit UsersModel(QObject *parent = nullptr);

QHash<int, QByteArray> roleNames() const;
QHash<int, QByteArray> roleNames() const override;

int rowCount(const QModelIndex &parent) const;
int rowCount(const QModelIndex &parent) const override;

QVariant data(const QModelIndex &index, int role) const;
bool setData(const QModelIndex &index, const QVariant &value, int role);
QVariant data(const QModelIndex &index, int role) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;

UserAccount *userAccount(const QModelIndex &index) const;

Expand Down

0 comments on commit 2294739

Please sign in to comment.