Unicode compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31501 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-01-19 20:13:49 +00:00
parent 5385747ec6
commit 14bdf09396

View File

@ -55,7 +55,10 @@ public:
// addr2line, normally we can retrieve it from wxTheApp but if wxTheApp
// doesn't exist or doesn't have the correct value, the path may be given
// explicitly
wxStackWalker(const char *argv0 = NULL) { ms_exepath = argv0; }
wxStackWalker(const char *argv0 = NULL)
{
ms_exepath = wxString::FromAscii(argv0);
}
virtual void Walk(size_t skip = 1);
virtual void WalkFromException() { Walk(2); }