don't show wxOnAssert() frame neither in the assert dialog, it's not interesting as it's always the same

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-12-03 16:29:23 +00:00
parent 8829531cdb
commit 62710178a6

View File

@@ -386,7 +386,8 @@ extern "C"
{
void get_stackframe_callback(StackDump *dump)
{
dump->ProcessFrames(2); // don't show ShowAssertDialog() call itself
// skip over frames up to including wxOnAssert()
dump->ProcessFrames(3);
}
}