diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-01-19 09:38:51 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-01-19 09:38:51 +0200 |
commit | 70e4706093fd7b08a32f9638dace178852a9d249 (patch) | |
tree | 752ff65036b6752c92289d2d874416889ad5f733 /src/qt/bitcoingui.h | |
parent | 219417b388a0373f9eb71446e1b0499ab55dd3e2 (diff) |
Revert "refactor: Remove never used default parameter"
This reverts commit 7d0a8f4f530885cbf3870291f10f667326373bd1.
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 45fbb03aa4..809cf8b4ed 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -219,8 +219,9 @@ public Q_SLOTS: @param[in] message the displayed text @param[in] style modality and style definitions (icon and used buttons - buttons only for message boxes) @see CClientUIInterface::MessageBoxFlags + @param[in] ret pointer to a bool that will be modified to whether Ok was clicked (modal only) */ - void message(const QString& title, QString message, unsigned int style); + void message(const QString& title, QString message, unsigned int style, bool* ret = nullptr); #ifdef ENABLE_WALLET void setCurrentWallet(WalletModel* wallet_model); |