diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-27 12:34:18 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-27 12:34:18 -0800 |
| commit | 97c8e6389e7e5fdc0ef5f4162105a9661b325eb9 (patch) | |
| tree | 26a9051543b64ff568c8f880c2ac75753af4870a /src/util.cpp | |
| parent | Merge pull request #2004 from alexanderkjeldaas/simplify-cmutexlock (diff) | |
| parent | update CClientUIInterface and remove orphan Wx stuff (diff) | |
| download | discoin-97c8e6389e7e5fdc0ef5f4162105a9661b325eb9.tar.xz discoin-97c8e6389e7e5fdc0ef5f4162105a9661b325eb9.zip | |
Merge pull request #1988 from Diapolo/ThreadSafeMessageBox
update CClientUIInterface and remove orphan Wx stuff
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 03014a5da..2f36c6606 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1248,7 +1248,7 @@ void AddTimeData(const CNetAddr& ip, int64 nTime) string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin will not work properly."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); - uiInterface.ThreadSafeMessageBox(strMessage+" ", string("Bitcoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION); + uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING); } } } |