From: Vadim Zeitlin Date: Tue, 13 Jul 2010 14:13:12 +0000 (+0000) Subject: Really fix interactive output test compilation in ANSI build. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0fbd8b9bbb249d338fc64182c309e0159b5ee14f?ds=inline Really fix interactive output test compilation in ANSI build. Use a temporary wxString to make sure the code compiles in both ANSI and STL versions too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/interactive/output.cpp b/tests/interactive/output.cpp index 6d6294abb8..ff462c2176 100644 --- a/tests/interactive/output.cpp +++ b/tests/interactive/output.cpp @@ -377,7 +377,8 @@ void InteractiveOutputTestCase::TestStackWalk() #if wxUSE_STACKWALKER wxPuts(wxT("*** Testing wxStackWalker ***")); - StackDump dump(wxTheApp->argv[0].utf8_str()); + wxString progname(wxTheApp->argv[0]); + StackDump dump(progname.utf8_str()); dump.Walk(); wxPuts("\n");