Browse Source

Revert "use _strnicmp (ISO C++) instead of deprecated strnicmp (POSIX) and add missing "#define strncasecmp _strnicmp" in init.cpp"

This reverts commit f4ac41806a.

Reason: breaks build.
0.8
Jeff Garzik 13 years ago committed by Jeff Garzik
parent
commit
f9dd136a09
  1. 2
      src/init.cpp
  2. 7
      src/qt/bitcoin.cpp

2
src/init.cpp

@ -16,7 +16,6 @@ @@ -16,7 +16,6 @@
#ifndef WIN32
#include <signal.h>
#define strncasecmp _strnicmp
#endif
using namespace std;
@ -163,6 +162,7 @@ bool static InitError(const std::string &str) @@ -163,6 +162,7 @@ bool static InitError(const std::string &str)
{
ThreadSafeMessageBox(str, _("Bitcoin"), wxOK | wxMODAL);
return false;
}
bool static InitWarning(const std::string &str)

7
src/qt/bitcoin.cpp

@ -33,10 +33,6 @@ Q_IMPORT_PLUGIN(qkrcodecs) @@ -33,10 +33,6 @@ Q_IMPORT_PLUGIN(qkrcodecs)
Q_IMPORT_PLUGIN(qtaccessiblewidgets)
#endif
#ifdef WIN32
#define strncasecmp _strnicmp
#endif
// Need a global reference for the notifications to find the GUI
static BitcoinGUI *guiref;
static QSplashScreen *splashref;
@ -181,6 +177,9 @@ void HelpMessageBox::exec() @@ -181,6 +177,9 @@ void HelpMessageBox::exec()
#endif
}
#ifdef WIN32
#define strncasecmp strnicmp
#endif
#ifndef BITCOIN_QT_TEST
int main(int argc, char *argv[])
{

Loading…
Cancel
Save