aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bantablemodel.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2015-06-23 21:10:42 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-09-16 16:50:19 +0200
commit9e521c173586257f57764b479beb5923c33ed0eb (patch)
tree8a83ab4b363cfadfa8738b99ead769e3e0797945 /src/qt/bantablemodel.cpp
parent607809f037950f114f64f1ee09c1486a3c66638b (diff)
downloadbitcoin-9e521c173586257f57764b479beb5923c33ed0eb.tar.xz
[Qt] polish ban table
Diffstat (limited to 'src/qt/bantablemodel.cpp')
-rw-r--r--src/qt/bantablemodel.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp
index b4b100bf5c..1ef120ccf0 100644
--- a/src/qt/bantablemodel.cpp
+++ b/src/qt/bantablemodel.cpp
@@ -56,11 +56,10 @@ public:
CCombinedBan *index(int idx)
{
- if(idx >= 0 && idx < cachedBanlist.size()) {
+ if (idx >= 0 && idx < cachedBanlist.size())
return &cachedBanlist[idx];
- } else {
- return 0;
- }
+
+ return 0;
}
};
@@ -124,7 +123,7 @@ QVariant BanTableModel::data(const QModelIndex &index, int role) const
}
} else if (role == Qt::TextAlignmentRole) {
if (index.column() == Bantime)
- return (int)(Qt::AlignRight | Qt::AlignVCenter);
+ return (QVariant)(Qt::AlignRight | Qt::AlignVCenter);
}
return QVariant();
@@ -157,13 +156,8 @@ QModelIndex BanTableModel::index(int row, int column, const QModelIndex &parent)
CCombinedBan *data = priv->index(row);
if (data)
- {
return createIndex(row, column, data);
- }
- else
- {
- return QModelIndex();
- }
+ return QModelIndex();
}
void BanTableModel::refresh()