aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-02-03 20:05:04 +0000
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-02-03 20:05:04 +0000
commitacf8abc7f3cf7efa418a46f9f69f23f1a5035582 (patch)
tree465ff0cdc2c67ba087eb87d3b361baeaa9baadd6 /src/qt
parent651e34388832149402fea0d26f3dc13bbe197f5a (diff)
downloadbitcoin-acf8abc7f3cf7efa418a46f9f69f23f1a5035582.tar.xz
gui: Fix unintialized WalletView::progressDialog
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/walletview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletview.h b/src/qt/walletview.h
index 86e46348be..78d870f59f 100644
--- a/src/qt/walletview.h
+++ b/src/qt/walletview.h
@@ -66,7 +66,7 @@ private:
TransactionView *transactionView;
- QProgressDialog *progressDialog;
+ QProgressDialog* progressDialog{nullptr};
const PlatformStyle *platformStyle;
public Q_SLOTS: