From: Vadim Zeitlin Date: Tue, 21 Mar 2006 15:59:58 +0000 (+0000) Subject: don't throw away the first three stack frames in the assert stack dump (fix needed... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b0d8bfa6cd4042d3ea8680ad0145f79e3cb15268?ds=sidebyside don't throw away the first three stack frames in the assert stack dump (fix needed after recent assert cleanup/changes) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index 141502e820..c1bbddd326 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -739,7 +739,7 @@ static wxString GetAssertStackTrace() }; StackDump dump; - dump.Walk(5); // don't show OnAssert() call itself + dump.Walk(2); // don't show OnAssert() call itself stackTrace = dump.GetStackTrace(); // don't show more than maxLines or we could get a dialog too tall to be