diff options
| author | practicalswift <[email protected]> | 2017-04-10 10:24:49 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-04-10 10:24:49 +0200 |
| commit | 9a763d4f86fb2428bfcae6cad5326600ada10c11 (patch) | |
| tree | 216bc64aac841ad0a34ca5f993bac2434104ef1b /src/qt/bantablemodel.cpp | |
| parent | Merge #10167: [trivial] Fix typo ("improssible" → "impossible") (diff) | |
| download | discoin-9a763d4f86fb2428bfcae6cad5326600ada10c11.tar.xz discoin-9a763d4f86fb2428bfcae6cad5326600ada10c11.zip | |
Remove excess logic.
Diffstat (limited to 'src/qt/bantablemodel.cpp')
| -rw-r--r-- | src/qt/bantablemodel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp index 4b34e73eb..f8a99506c 100644 --- a/src/qt/bantablemodel.cpp +++ b/src/qt/bantablemodel.cpp @@ -181,7 +181,5 @@ void BanTableModel::sort(int column, Qt::SortOrder order) bool BanTableModel::shouldShow() { - if (priv->size() > 0) - return true; - return false; + return priv->size() > 0; } |