diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-19 09:35:26 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-20 10:44:50 +0200 |
| commit | 239c11d0dd4287e74286c40fb338aea85f4b1996 (patch) | |
| tree | 4ad01e70d94768977f25a0129255ec3c84635f2e /src/main.cpp | |
| parent | Process address book updates incrementally (diff) | |
| download | discoin-239c11d0dd4287e74286c40fb338aea85f4b1996.tar.xz discoin-239c11d0dd4287e74286c40fb338aea85f4b1996.zip | |
Make testcases build, prevent windows symbol collision
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8410b9af4..e62331deb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1858,7 +1858,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) string strMessage = _("Warning: Disk space is low"); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); - uiInterface.ThreadSafeMessageBox(strMessage, "Bitcoin", MF_OK | MF_ICON_EXCLAMATION | MF_MODAL); + uiInterface.ThreadSafeMessageBox(strMessage, "Bitcoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL); uiInterface.QueueShutdown(); return false; } |