Skip to content

Commit

Permalink
refactor(registry): add missing override specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
trollixx committed Jun 22, 2024
1 parent 5081898 commit 1e3e9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/registry/listmodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class ListModel final : public QAbstractItemModel
public:
~ListModel() override;

QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;

QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
Expand Down

0 comments on commit 1e3e9ad

Please sign in to comment.