From 178cd887eca1123fde39f530ee2b198db48363fe Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 8 Sep 2016 19:58:30 +0000 Subject: Qt/splash: Specifically keep track of which wallet(s) we are connected to for later disconnecting --- src/qt/splashscreen.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/qt/splashscreen.h') 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 +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 connectedWallets; }; #endif // BITCOIN_QT_SPLASHSCREEN_H -- cgit v1.2.3