mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 17:02:51 +08:00
Fix wxLogWarning() documentation
Don't claim that they "don't interrupt the program work", whatever it means. Closes #25916.
This commit is contained in:
@@ -31,8 +31,9 @@ of arguments or a variable argument list pointer. Here are all of them:
|
||||
@li 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.
|
||||
@li wxLogWarning() for warnings. They are also normally shown to the user, but
|
||||
don't interrupt the program work.
|
||||
@li wxLogWarning() for warnings, i.e. messages that are less severe than errors
|
||||
but still should normally be brought to the user's attention. The default
|
||||
processing is to show them in a message box, just as for the errors.
|
||||
@li wxLogMessage() is for all normal, informational messages. They also appear in
|
||||
a message box by default (but it can be changed, see below).
|
||||
@li wxLogVerbose() is for verbose output. Normally, it is suppressed, but might
|
||||
|
||||
+5
-2
@@ -1517,8 +1517,11 @@ void wxVLogVerbose(const char* formatString, va_list argPtr);
|
||||
/** @addtogroup group_funcmacro_log */
|
||||
///@{
|
||||
/**
|
||||
For warnings - they are also normally shown to the user, but don't
|
||||
interrupt the program work.
|
||||
The function to use for warning messages.
|
||||
|
||||
Warnings are less severe than errors but still should normally be
|
||||
brought to the user's attention. The default processing is to show them
|
||||
in a message box.
|
||||
|
||||
@header{wx/log.h}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user