diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-07-19 15:27:14 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-08-26 09:53:09 +0200 |
commit | bd44a04dc3fe94d2764fadd9f9a7deb81ff49f45 (patch) | |
tree | ebfd15a3a1c3d083c1b16b147839001e66121549 /src/qt/walletframe.h | |
parent | 0904c3cda4d1f40d41154bd9b2739660bdf12852 (diff) |
[Qt] make Out-Of-Sync warning icon clickable
Diffstat (limited to 'src/qt/walletframe.h')
-rw-r--r-- | src/qt/walletframe.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qt/walletframe.h b/src/qt/walletframe.h index 9a5bc273c2..7e3a5690eb 100644 --- a/src/qt/walletframe.h +++ b/src/qt/walletframe.h @@ -38,6 +38,10 @@ public: void showOutOfSyncWarning(bool fShow); +Q_SIGNALS: + /** Notify that the user has requested more information about the out-of-sync warning */ + void requestedOfSyncWarningInfo(); + private: QStackedWidget *walletStack; BitcoinGUI *gui; @@ -78,6 +82,8 @@ public Q_SLOTS: void usedSendingAddresses(); /** Show used receiving addresses */ void usedReceivingAddresses(); + /** Pass on signal over requested out-of-sync-warning information */ + void outOfSyncWarningClicked(); }; #endif // BITCOIN_QT_WALLETFRAME_H |