diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-03-24 21:36:10 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-03-25 12:33:30 +0200 |
| commit | a6aee96c7e25d48aae4bc99b300de795263f0e13 (patch) | |
| tree | 80f338138284dd211ad8dfff0d2435ee0497a279 /src/util.cpp | |
| parent | Merge pull request #947 from ali1234/master (diff) | |
| download | discoin-a6aee96c7e25d48aae4bc99b300de795263f0e13.tar.xz discoin-a6aee96c7e25d48aae4bc99b300de795263f0e13.zip | |
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 1623fe84e..08752e693 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]; |