remove unused functions from util.h/util.cpp

This commit is contained in:
Wladimir J. van der Laan
2012-03-24 21:36:10 +01:00
parent 2e2c04e250
commit a6aee96c7e
2 changed files with 0 additions and 51 deletions

View File

@@ -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];