diff options
| author | Jonas Schnelli <[email protected]> | 2016-07-19 15:27:14 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-08-26 09:53:09 +0200 |
| commit | bd44a04dc3fe94d2764fadd9f9a7deb81ff49f45 (patch) | |
| tree | ebfd15a3a1c3d083c1b16b147839001e66121549 /src/qt/walletframe.h | |
| parent | [Refactor] refactor function that forms human readable text out of a timeoffset (diff) | |
| download | discoin-bd44a04dc3fe94d2764fadd9f9a7deb81ff49f45.tar.xz discoin-bd44a04dc3fe94d2764fadd9f9a7deb81ff49f45.zip | |
[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 9a5bc273c..7e3a5690e 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 |