diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-24 21:36:10 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-25 12:33:30 +0200 |
commit | a6aee96c7e25d48aae4bc99b300de795263f0e13 (patch) | |
tree | 80f338138284dd211ad8dfff0d2435ee0497a279 /src/util.cpp | |
parent | 2e2c04e250fff9a3404b4da2cf0f73c38c126050 (diff) |
remove unused functions from util.h/util.cpp
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/util.cpp b/src/util.cpp index 1623fe84ef..08752e6930 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -767,17 +767,6 @@ void PrintException(std::exception* pex, const char* pszThread) throw; } -void ThreadOneMessageBox(string strMessage) -{ - // Skip message boxes if one is already open - static bool fMessageBoxOpen; - if (fMessageBoxOpen) - return; - fMessageBoxOpen = true; - ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION); - fMessageBoxOpen = false; -} - void PrintExceptionContinue(std::exception* pex, const char* pszThread) { char pszMessage[10000]; |