aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bantablemodel.cpp
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2018-07-31 14:02:34 -0400
committerBen Woosley <ben.woosley@gmail.com>2019-01-13 03:25:14 -0800
commit3a0e76fc12b91b2846d756981e15f09b767a9c37 (patch)
tree73d30057afc14c8cf0f3e882d9f885336a970d86 /src/qt/bantablemodel.cpp
parent9096276e0b2d5b7e19af9a5f3c144ef108ee55e0 (diff)
downloadbitcoin-3a0e76fc12b91b2846d756981e15f09b767a9c37.tar.xz
Replace remaining 0 with nullptr in Qt code
Also used type-appropriate enum values such as Qt::NoItemFlags in some cases. All cases identified via -Wzero-as-null-pointer-constant
Diffstat (limited to 'src/qt/bantablemodel.cpp')
-rw-r--r--src/qt/bantablemodel.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp
index 92cfbee074..00c446cc63 100644
--- a/src/qt/bantablemodel.cpp
+++ b/src/qt/bantablemodel.cpp
@@ -145,8 +145,7 @@ QVariant BanTableModel::headerData(int section, Qt::Orientation orientation, int
Qt::ItemFlags BanTableModel::flags(const QModelIndex &index) const
{
- if(!index.isValid())
- return 0;
+ if (!index.isValid()) return Qt::NoItemFlags;
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
return retval;