diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-16 19:08:57 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-16 19:08:57 -0500 |
commit | 1d83141803477f9625e301149fc9611f43f94592 (patch) | |
tree | 8f344ed7c1af45ab4da5dfbb77e8ca95a908c2d0 /src/qt/bitcoingui.h | |
parent | efb6d9aae7595ee2c76aa898b94aed53f079390f (diff) | |
parent | 398774181a2d5575a0605e918944d85c5425d12e (diff) |
Merge branch 'loaderror' of git://github.com/sipa/bitcoin
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 b7afdb1c8c..c684fcf249 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -126,8 +126,9 @@ public 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, const QString &message, unsigned int style); + void message(const QString &title, const QString &message, unsigned int style, bool *ret = NULL); /** Asks the user whether to pay the transaction fee or to cancel the transaction. It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so an indirected pointer is used. |