Compilation fix for "interactive" test in wxUSE_STL=1 build.
wxString is not convertible (even explicitly) to char* in this case. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -377,7 +377,7 @@ void InteractiveOutputTestCase::TestStackWalk()
|
||||
#if wxUSE_STACKWALKER
|
||||
wxPuts(wxT("*** Testing wxStackWalker ***"));
|
||||
|
||||
StackDump dump((const char*)wxTheApp->argv[0]);
|
||||
StackDump dump(wxTheApp->argv[0].utf8_str());
|
||||
dump.Walk();
|
||||
|
||||
wxPuts("\n");
|
||||
|
Reference in New Issue
Block a user