aboutsummaryrefslogtreecommitdiff
path: root/src/qtui.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-03-31 15:08:25 +0200
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-04 13:57:32 -0400
commit91d7e847e051c9aa8be87a72d2763872b6b4f385 (patch)
treedaf2e86f6c36979413549a08e08af16fa07de570 /src/qtui.h
parent724c65c1f8b34245eee6dbd761e1956a7b0d9c53 (diff)
downloadbitcoin-91d7e847e051c9aa8be87a72d2763872b6b4f385.tar.xz
Use a messagebox to display the error when -server is provided without providing a rpc password
(plus part of 7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5)
Diffstat (limited to 'src/qtui.h')
-rw-r--r--src/qtui.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qtui.h b/src/qtui.h
index 17fc44e94b..193f849249 100644
--- a/src/qtui.h
+++ b/src/qtui.h
@@ -35,6 +35,8 @@ typedef void wxWindow;
#define wxHELP 0x00008000
#define wxMORE 0x00010000
#define wxSETUP 0x00020000
+// Force blocking, modal message box dialog (not just notification)
+#define wxMODAL 0x00040000
extern int MyMessageBox(const std::string& message, const std::string& caption="Message", int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1);
#define wxMessageBox MyMessageBox