diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-02-09 11:19:01 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-03-09 10:58:17 +0100 |
commit | 8517e9709e883ef59603d56b45dd2e06f8b7c7d7 (patch) | |
tree | 7534aee2b8a461e0ff470b9ad2ff95909ff26df4 /src/qt/bitcoingui.h | |
parent | 513e0252391688b919f1b08980c5759a515c341b (diff) |
[Qt] rework setNumBlocks to have blockDate as parameter
- reduces some functional overhead and simplifies the code
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index fd776d63f8..5a289a9046 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -143,8 +143,8 @@ signals: public slots: /** Set number of connections shown in the UI */ void setNumConnections(int count); - /** Set number of blocks shown in the UI */ - void setNumBlocks(int count); + /** Set number of blocks and last block date shown in the UI */ + void setNumBlocks(int count, const QDateTime& blockDate); /** Notify the user of an event from the core network or transaction handling code. @param[in] title the message box / notification title |