aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bantablemodel.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-01-02 21:40:53 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-01-02 21:40:53 +0200
commit195fcb53a09e9b852544778a077727f81d31303e (patch)
treed92cd1366d9ffd3e10802530169e4927e4549992 /src/qt/bantablemodel.cpp
parentae8f79713543d3db24a886cc27340b1570c2657d (diff)
downloadbitcoin-195fcb53a09e9b852544778a077727f81d31303e.tar.xz
qt: Follow Qt docs when implementing rowCount and columnCount
Diffstat (limited to 'src/qt/bantablemodel.cpp')
-rw-r--r--src/qt/bantablemodel.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp
index 2676de96d7..a01a7bc386 100644
--- a/src/qt/bantablemodel.cpp
+++ b/src/qt/bantablemodel.cpp
@@ -98,13 +98,17 @@ BanTableModel::~BanTableModel()
int BanTableModel::rowCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent);
+ if (parent.isValid()) {
+ return 0;
+ }
return priv->size();
}
int BanTableModel::columnCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent);
+ if (parent.isValid()) {
+ return 0;
+ }
return columns.length();
}