wxLogFatalError() now always aborts the program and doesn't use the active log target but always shows the standard message box

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-02-22 18:13:10 +00:00
parent b795f9ca5f
commit 1800689f23
2 changed files with 28 additions and 4 deletions

View File

@@ -26,8 +26,9 @@ arguments or a variable argument list pointer. Here are all of them:
\begin{itemize}\itemsep=0pt
\item{\bf wxLogFatalError} which is like {\it wxLogError}, but also
terminates the program with the exit code 3 (using {\it abort()} standard
function also terminates the program with this exit code).
terminates the program with the exit code $3$ (using {\it abort()} standard
function). Unlike for all the other logging functions, this function can't be
overridden by a log target.
\item{\bf wxLogError} is the function to use for error messages, i.e. the
messages that must be shown to the user. The default processing is to pop up a
message box to inform the user about it.