git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64681
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
#include "wx/app.h"
#endif
#include "wx/app.h"
+#include "wx/wxcrt.h" // for wxPuts
+#include "wx/wxcrtvararg.h" // for wxPrintf
// ----------------------------------------------------------------------------
// conditional compilation
// ----------------------------------------------------------------------------
// conditional compilation
// stack backtrace
// ----------------------------------------------------------------------------
// stack backtrace
// ----------------------------------------------------------------------------
#include "wx/stackwalk.h"
class StackDump : public wxStackWalker
#include "wx/stackwalk.h"
class StackDump : public wxStackWalker
: wxStackWalker(argv0)
{
}
: wxStackWalker(argv0)
{
}
virtual void Walk(size_t skip = 1, size_t maxdepth = wxSTACKWALKER_MAX_DEPTH)
{
wxPuts(wxT("Stack dump:"));
virtual void Walk(size_t skip = 1, size_t maxdepth = wxSTACKWALKER_MAX_DEPTH)
{
wxPuts(wxT("Stack dump:"));
void InteractiveOutputTestCase::TestStackWalk()
{
#ifdef TEST_STACKWALKER
void InteractiveOutputTestCase::TestStackWalk()
{
#ifdef TEST_STACKWALKER
wxPuts(wxT("*** Testing wxStackWalker ***"));
wxPuts(wxT("*** Testing wxStackWalker ***"));
- StackDump dump(wxTheApp->argv[0]);
+ StackDump dump((const char*)wxTheApp->argv[0]);
dump.Walk();
wxPuts("\n");
dump.Walk();
wxPuts("\n");
#endif // TEST_STACKWALKER
}
#endif // TEST_STACKWALKER
}