Documentation fixes for unresolved labels after changes in debbuging api.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-03-28 11:24:08 +00:00
parent 1b14e197be
commit e0c8d2d924
2 changed files with 6 additions and 7 deletions

View File

@@ -4331,7 +4331,7 @@ builds the \helpref{wxCHECK}{wxcheck} failures don't result in anything.
To override the default behaviour in the debug builds which is to show the user To override the default behaviour in the debug builds which is to show the user
a dialog asking whether he wants to abort the program, continue or continue a dialog asking whether he wants to abort the program, continue or continue
ignoring any subsequent assert failures, you may override ignoring any subsequent assert failures, you may override
\helpref{wxApp::OnAssert}{wxapponassert} which is called by this function if \helpref{wxApp::OnAssertFailure}{wxapponassertfailure} which is called by this function if
the global application object exists. the global application object exists.

View File

@@ -14,7 +14,7 @@ wxStackWalker allows an application to enumerate, or walk, the stack frames (the
It is mostly useful in only two situations: It is mostly useful in only two situations:
inside \helpref{wxApp::OnFatalException}{wxapponfatalexception} function to inside \helpref{wxApp::OnFatalException}{wxapponfatalexception} function to
programmatically get the location of the crash and, in debug builds, in programmatically get the location of the crash and, in debug builds, in
\helpref{wxApp::OnAssert}{wxapponassert} to report the caller of the failed \helpref{wxApp::OnAssertFailure}{wxapponassertfailure} to report the caller of the failed
assert. assert.
wxStackWalker works by repeatedly calling wxStackWalker works by repeatedly calling
@@ -97,4 +97,3 @@ notice that Walk() frame itself is not included if skip $\ge 1$).
Enumerate stack frames from the location of uncaught exception. Enumerate stack frames from the location of uncaught exception.
This method can only be called from This method can only be called from
\helpref{wxApp::OnFatalException()}{wxapponfatalexception}. \helpref{wxApp::OnFatalException()}{wxapponfatalexception}.