On windows, show message box with help, as there is no stderr (fixes #702)

(partial)
This commit is contained in:
Wladimir J. van der Laan
2012-02-17 17:53:41 +01:00
committed by Luke Dashjr
parent b085138f89
commit 001a64c71c

View File

@@ -241,7 +241,12 @@ bool AppInit2(int argc, char* argv[])
// Remove tabs
strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end());
#if defined(QT_GUI) && defined(WIN32)
// On windows, show a message box, as there is no stderr
wxMessageBox(strUsage, "Usage");
#else
fprintf(stderr, "%s", strUsage.c_str());
#endif
return false;
}