From b0d8bfa6cd4042d3ea8680ad0145f79e3cb15268 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 21 Mar 2006 15:59:58 +0000 Subject: [PATCH] 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 --- src/common/appbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2