From 2c64b066ea099bb971bdd7a82ca2089130097f89 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 13 Dec 2012 04:41:52 +0000 Subject: [PATCH] decrease number of skipped frames in assert dialog backtrace, 7 is not the minimum, closes #14690 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73178 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/utilsgtk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/utilsgtk.cpp b/src/gtk/utilsgtk.cpp index 13b7dbd4c2..c25b9faa05 100644 --- a/src/gtk/utilsgtk.cpp +++ b/src/gtk/utilsgtk.cpp @@ -318,7 +318,7 @@ static void get_stackframe_callback(void* p) { StackDump* dump = static_cast(p); // skip over frames up to including wxOnAssert() - dump->ProcessFrames(7); + dump->ProcessFrames(6); } #endif // wxDEBUG_LEVEL && wxUSE_STACKWALKER -- 2.45.2