compilation fix after argv changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -249,7 +249,7 @@ bool MyApp::OnInit()
|
|||||||
i ++;
|
i ++;
|
||||||
if (i < argc)
|
if (i < argc)
|
||||||
{
|
{
|
||||||
wxChar *s = argv[i];
|
const wxChar *s = argv[i];
|
||||||
i ++;
|
i ++;
|
||||||
if (wxStrcmp(s, _T("ansi")) == 0 || wxStrcmp(s, _T("pc")) == 0 || wxStrcmp(s, _T("mac")) == 0 ||
|
if (wxStrcmp(s, _T("ansi")) == 0 || wxStrcmp(s, _T("pc")) == 0 || wxStrcmp(s, _T("mac")) == 0 ||
|
||||||
wxStrcmp(s, _T("pca")) == 0)
|
wxStrcmp(s, _T("pca")) == 0)
|
||||||
|
Reference in New Issue
Block a user