diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2016-09-08 19:58:30 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-10-04 20:30:10 +0000 |
commit | 178cd887eca1123fde39f530ee2b198db48363fe (patch) | |
tree | dc6642222bed128752411e9d3465a490bc6a4572 /src/qt/splashscreen.h | |
parent | 1880aeb0336324ed543c7d181c7b1509bc1cce7a (diff) |
Qt/splash: Specifically keep track of which wallet(s) we are connected to for later disconnecting
Diffstat (limited to 'src/qt/splashscreen.h')
-rw-r--r-- | src/qt/splashscreen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/splashscreen.h b/src/qt/splashscreen.h index 29d16d4eae..8761343a7a 100644 --- a/src/qt/splashscreen.h +++ b/src/qt/splashscreen.h @@ -7,6 +7,7 @@ #include <QSplashScreen> +class CWallet; class NetworkStyle; /** Class for the splashscreen with information of the running client. @@ -39,11 +40,15 @@ private: void subscribeToCoreSignals(); /** Disconnect core signals to splash screen */ void unsubscribeFromCoreSignals(); + /** Connect wallet signals to splash screen */ + void ConnectWallet(CWallet*); QPixmap pixmap; QString curMessage; QColor curColor; int curAlignment; + + QList<CWallet*> connectedWallets; }; #endif // BITCOIN_QT_SPLASHSCREEN_H |