diff options
| author | Pieter Wuille <[email protected]> | 2012-03-25 19:31:03 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-03-25 19:31:03 -0700 |
| commit | 59e659fcc08b622da08448018e507c2472ca2f1f (patch) | |
| tree | 63af1d4e67ce84e273579b5c02551a044ad258fc /src/util.cpp | |
| parent | Merge pull request #984 from sipa/youngseeds (diff) | |
| parent | remove unused functions from util.h/util.cpp (diff) | |
| download | discoin-59e659fcc08b622da08448018e507c2472ca2f1f.tar.xz discoin-59e659fcc08b622da08448018e507c2472ca2f1f.zip | |
Merge pull request #983 from laanwj/2012_03_removeunusedutil
Remove unused functions from util.h/util.cpp (EOM)
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]; |