diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-06-26 10:23:51 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-09-16 16:50:19 +0200 |
commit | cdd72cd5fbc2b287559f7230d1616339e9ff2d6d (patch) | |
tree | fec12703dc0654e2d1b43768cdde14ac112c689a /src/qt/clientmodel.h | |
parent | 43c1f5b8d7accc158dfd6b270cb9bfd0cd900a3e (diff) |
[Qt] simplify ban list signal handling
- remove banListChanged signal from client model
- directly call clientModel->getBanTableModel()->refresh() without the way
over clientModel->updateBanlist()
- also fix clearing peer detail window, when selecting (clicking)
peers in the ban list
Diffstat (limited to 'src/qt/clientmodel.h')
-rw-r--r-- | src/qt/clientmodel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index 6f7b2de3a3..627bdf862d 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -91,7 +91,6 @@ Q_SIGNALS: void numBlocksChanged(int count, const QDateTime& blockDate); void alertsChanged(const QString &warnings); void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut); - void banListChanged(); //! Fired when a message should be reported to the user void message(const QString &title, const QString &message, unsigned int style); |