printf(" %s\n", (const char *)details.GetVersion().mb_str());
}
-
+
wxPuts(wxEmptyString);
#endif // TEST_DYNLIB
}
: wxStackWalker(argv0)
{
}
-
+
virtual void Walk(size_t skip = 1, size_t maxdepth = wxSTACKWALKER_MAX_DEPTH)
{
wxPuts(wxT("Stack dump:"));
#if wxUSE_STACKWALKER
wxPuts(wxT("*** Testing wxStackWalker ***"));
- StackDump dump((const char*)wxTheApp->argv[0]);
+ wxString progname(wxTheApp->argv[0]);
+ StackDump dump(progname.utf8_str());
dump.Walk();
-
+
wxPuts("\n");
#endif
#endif // TEST_STACKWALKER
wxT("fr"),
wxStandardPaths::ResourceCat_Messages
).c_str());
-
+
wxPuts("\n");
#endif // TEST_STDPATHS
}
vol.GetFlags() & wxFS_VOL_REMOVABLE ? wxT("removable")
: wxT("fixed"));
}
-
+
wxPuts("\n");
#endif // TEST_VOLUME
}