fix typo: s/SetTimestamp/DisableTimestamp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-11-09 15:20:49 +00:00
parent 54742e3426
commit bce9df55c7

View File

@@ -609,7 +609,8 @@ public:
standard @e strftime() function. For example, the default format is standard @e strftime() function. For example, the default format is
"[%d/%b/%y %H:%M:%S] " which gives something like "[17/Sep/98 22:10:16] " "[%d/%b/%y %H:%M:%S] " which gives something like "[17/Sep/98 22:10:16] "
(without quotes) for the current date. Setting an empty string as the time (without quotes) for the current date. Setting an empty string as the time
format disables timestamping of the messages completely. format or calling the shortcut wxLog::DisableTimestamp(), disables timestamping
of the messages completely.
See also See also
@li AddTraceMask() @li AddTraceMask()
@@ -676,13 +677,6 @@ public:
*/ */
static void ClearTraceMasks(); static void ClearTraceMasks();
/**
Disables time stamping of the log messages.
@since 2.9.0
*/
static void SetTimestamp(const wxString& format);
/** /**
Instructs wxLog to not create new log targets on the fly if there is none Instructs wxLog to not create new log targets on the fly if there is none
currently. (Almost) for internal use only: it is supposed to be called by the currently. (Almost) for internal use only: it is supposed to be called by the
@@ -800,6 +794,13 @@ public:
*/ */
static void SetTimestamp(const wxString& format); static void SetTimestamp(const wxString& format);
/**
Disables time stamping of the log messages.
@since 2.9.0
*/
static void DisableTimestamp();
/** /**
Sets the trace mask, see @ref log_derivingyours section for details. Sets the trace mask, see @ref log_derivingyours section for details.
*/ */