diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-01-16 20:42:57 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-01-16 20:42:57 +0200 |
commit | 7d0a8f4f530885cbf3870291f10f667326373bd1 (patch) | |
tree | aefe6185a9335d2f3cb740605b94e5ce7a3195b7 /src/qt/bitcoingui.h | |
parent | a9c789ed964dbfae59585e3b56c35816afc3d95e (diff) |
refactor: Remove never used default parameter
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 809cf8b4ed..45fbb03aa4 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -219,9 +219,8 @@ 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, bool* ret = nullptr); + void message(const QString& title, QString message, unsigned int style); #ifdef ENABLE_WALLET void setCurrentWallet(WalletModel* wallet_model); |