void SetLeftDown(bool down);
void SetMiddleDown(bool down);
void SetRightDown(bool down);
-
+
void SetControlDown(bool down);
void SetShiftDown(bool down);
void SetAltDown(bool down);
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
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.
\section{\class{wxStackWalker}}\label{wxstackwalker}
wxStackWalker allows an application to enumerate, or walk, the stack frames (the function callstack).
-It is mostly useful in only two situations:
+It is mostly useful in only two situations:
inside \helpref{wxApp::OnFatalException}{wxapponfatalexception} function to
-programmatically get the location of the crash and, in debug builds, in
-\helpref{wxApp::OnAssert}{wxapponassert} to report the caller of the failed
+programmatically get the location of the crash and, in debug builds, in
+\helpref{wxApp::OnAssertFailure}{wxapponassertfailure} to report the caller of the failed
assert.
wxStackWalker works by repeatedly calling
\func{void}{WalkFromException}{\void}
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}.
-