aboutsummaryrefslogtreecommitdiff
path: root/src/qt/overviewpage.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-03-14 08:49:59 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-05-08 10:36:58 +0300
commit1551cea2d52cac403ff506a7cc955d8de8fd6f3e (patch)
tree63665a4ab090e2b3c3c27a0a359b71ad492f6c50 /src/qt/overviewpage.cpp
parentf54753293fe7355e4280944d766f22054b560ba1 (diff)
downloadbitcoin-1551cea2d52cac403ff506a7cc955d8de8fd6f3e.tar.xz
refactor: Use override for non-final overriders
Diffstat (limited to 'src/qt/overviewpage.cpp')
-rw-r--r--src/qt/overviewpage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp
index e0ae1f9e92..e20ec229fc 100644
--- a/src/qt/overviewpage.cpp
+++ b/src/qt/overviewpage.cpp
@@ -35,7 +35,7 @@ public:
}
inline void paint(QPainter *painter, const QStyleOptionViewItem &option,
- const QModelIndex &index ) const
+ const QModelIndex &index ) const override
{
painter->save();
@@ -99,7 +99,7 @@ public:
painter->restore();
}
- inline QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
+ inline QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override
{
return QSize(DECORATION_SIZE, DECORATION_SIZE);
}