Applied wxStackWalker improvement part of

item #1591718, [wxGTK] Native assert dialog and optimized stack walker


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-11-12 14:33:03 +00:00
parent bc2ce7a59b
commit a82c22998b
6 changed files with 200 additions and 103 deletions

View File

@@ -82,13 +82,15 @@ This function must be overrided to process the given frame.
\membersection{wxStackWalker::Walk}\label{wxstackwalkerwalk}
\func{void}{Walk}{\param{size\_t }{skip = 1}}
\func{void}{Walk}{\param{size\_t }{skip = 1}, \param{size\_t }{maxDepth = 200}}
Enumerate stack frames from the current location, skipping the initial
number of them (this can be useful when Walk() is called from some known
location and you don't want to see the first few frames anyhow; also
notice that Walk() frame itself is not included if skip $\ge 1$).
Up to \arg{maxDepth} frames are walked from the innermost to the outermost one.
\membersection{wxStackWalker::WalkFromException}\label{wxstackwalkerwalkfromexception}