diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-19 09:35:26 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-20 10:44:50 +0200 |
commit | 239c11d0dd4287e74286c40fb338aea85f4b1996 (patch) | |
tree | 4ad01e70d94768977f25a0129255ec3c84635f2e /src/qt/bitcoin.cpp | |
parent | 0832c0d1669a3504b7ec21d583aecc79f84e8506 (diff) |
Make testcases build, prevent windows symbol collision
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index c5592b28df..07bdee0886 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -42,7 +42,7 @@ static void ThreadSafeMessageBox(const std::string& message, const std::string& // Message from network thread if(guiref) { - bool modal = (style & MF_MODAL); + bool modal = (style & CClientUIInterface::MODAL); // in case of modal message, use blocking connection to wait for user to click OK QMetaObject::invokeMethod(guiref, "error", modal ? GUIUtil::blockingGUIThreadConnection() : Qt::QueuedConnection, |