diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-20 01:53:24 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-20 01:53:24 -0700 |
| commit | 5a8398e55a5f2bc0ce95c1e5da06c11365af0764 (patch) | |
| tree | 4ad01e70d94768977f25a0129255ec3c84635f2e /src/util.cpp | |
| parent | Merge pull request #1323 from Diapolo/string_fixes (diff) | |
| parent | Make testcases build, prevent windows symbol collision (diff) | |
| download | discoin-5a8398e55a5f2bc0ce95c1e5da06c11365af0764.tar.xz discoin-5a8398e55a5f2bc0ce95c1e5da06c11365af0764.zip | |
Merge pull request #1205 from laanwj/2012_05_granular_ui_notifications
Finer-grained UI updates, move UI interface to boost::signals
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 c778e51e3..108f33b78 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1000,7 +1000,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()); - ThreadSafeMessageBox(strMessage+" ", string("Bitcoin"), wxOK | wxICON_EXCLAMATION); + uiInterface.ThreadSafeMessageBox(strMessage+" ", string("Bitcoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION); } } } |