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:
parent
5385747ec6
commit
14bdf09396
@ -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); }
|
||||
|
Loading…
Reference in New Issue
Block a user