aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2013-02-16 17:58:45 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2013-02-17 23:25:42 +0100
commitf7f3a96b74bb795d6e184a628adce21c744d234f (patch)
tree79999de8be9721005662fc0dcc51cc4a030a1256 /src/qt/bitcoingui.h
parent2f0fa79db290d5139c27409055b2035099afa6fd (diff)
downloadbitcoin-f7f3a96b74bb795d6e184a628adce21c744d234f.tar.xz
Improve block database load error reporting
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r--src/qt/bitcoingui.h3
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.