diff options
author | Matt Corallo <git@bluematt.me> | 2017-07-07 17:09:55 -0400 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2017-08-20 20:04:15 -0400 |
commit | ee4d1493e2a871b26201580c5a990a1df7a5e3f7 (patch) | |
tree | 68c3480279fbdfdff0d67dd624efdacfdcacd1d5 /src/qt/splashscreen.h | |
parent | 22e301a3d56dc9e6878380ee92c7d19ca43119d2 (diff) |
Drop upgrade-cancel callback registration for a generic "resumeable"
Instead of passing a StartShutdown reference all the way up from
txdb, give ShowProgress a "resumeable" boolean, which is used to
inform the user if the action will be resumed, but cancel is always
allowed by just calling StartShutdown().
Diffstat (limited to 'src/qt/splashscreen.h')
-rw-r--r-- | src/qt/splashscreen.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/qt/splashscreen.h b/src/qt/splashscreen.h index a88ebb98a8..c6cfd503f7 100644 --- a/src/qt/splashscreen.h +++ b/src/qt/splashscreen.h @@ -36,8 +36,6 @@ public Q_SLOTS: /** Show message and progress */ void showMessage(const QString &message, int alignment, const QColor &color); - /** Sets the break action */ - void setBreakAction(const std::function<void(void)> &action); protected: bool eventFilter(QObject * obj, QEvent * ev); @@ -55,8 +53,6 @@ private: int curAlignment; QList<CWallet*> connectedWallets; - - std::function<void(void)> breakAction; }; #endif // BITCOIN_QT_SPLASHSCREEN_H |