diff options
Diffstat (limited to 'tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp')
-rw-r--r-- | tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp b/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp index 32e4a1a05a..3634a3ea3c 100644 --- a/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp +++ b/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp @@ -804,8 +804,8 @@ public: endResetModel(); } - QVariant data(const QModelIndex &, int) const { return QVariant(); } - int rowCount(const QModelIndex &) const { return 0; } + QVariant data(const QModelIndex &, int) const override { return QVariant(); } + int rowCount(const QModelIndex &) const override { return 0; } }; |