aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2012-03-25 19:31:03 -0700
committerPieter Wuille <[email protected]>2012-03-25 19:31:03 -0700
commit59e659fcc08b622da08448018e507c2472ca2f1f (patch)
tree63af1d4e67ce84e273579b5c02551a044ad258fc /src/util.cpp
parentMerge pull request #984 from sipa/youngseeds (diff)
parentremove unused functions from util.h/util.cpp (diff)
downloaddiscoin-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.cpp11
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];