diff options
| author | Pieter Wuille <[email protected]> | 2012-04-04 05:03:07 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-04-04 05:03:07 -0700 |
| commit | b0a7e05a45a925d78efd00ecca6dce9b7a9530f9 (patch) | |
| tree | 13d0f8f8650b545b767c3e6b8de3e2effa385f2f /src/util.cpp | |
| parent | Merge pull request #1025 from Diapolo/GUI-BlockDL (diff) | |
| parent | Move from noui.h / ui.h to one ui_interface.h with dummy implementation for t... (diff) | |
| download | discoin-b0a7e05a45a925d78efd00ecca6dce9b7a9530f9.tar.xz discoin-b0a7e05a45a925d78efd00ecca6dce9b7a9530f9.zip | |
Merge pull request #1019 from laanwj/2012_03_uirefactor
Streamline UI ↔ Core interface
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 cf73ecf5a..4f34ab616 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1041,7 +1041,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()); - boost::thread(boost::bind(ThreadSafeMessageBox, strMessage+" ", string("Bitcoin"), wxOK | wxICON_EXCLAMATION, (wxWindow*)NULL, -1, -1)); + ThreadSafeMessageBox(strMessage+" ", string("Bitcoin"), wxOK | wxICON_EXCLAMATION); } } } |