From 9e24755d00599ec0f35542beea694ea2816753dc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 27 Nov 2016 15:02:53 +0100 Subject: [PATCH] Minor improvements to wxSysErrorMsgStr() documentation Link to the new function, instead of wxSysErrorMsg(), from the other functions documentation. Also mention that this function is new since 3.1.0. --- interface/wx/log.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/interface/wx/log.h b/interface/wx/log.h index b76d734730..8b8d59e328 100644 --- a/interface/wx/log.h +++ b/interface/wx/log.h @@ -1215,7 +1215,7 @@ void wxSafeShowMessage(const wxString& title, const wxString& text); Returns the error code from the last system call. This function uses @c errno on Unix platforms and @c GetLastError under Win32. - @see wxSysErrorMsg(), wxLogSysError() + @see wxSysErrorMsgStr(), wxLogSysError() @header{wx/log.h} */ @@ -1229,6 +1229,8 @@ unsigned long wxSysErrorCode(); Use this function instead of wxSysErrorMsg(), as the latter one is not thread-safe. + @since 3.1.0 + @see wxSysErrorCode(), wxLogSysError() @header{wx/log.h} @@ -1457,7 +1459,7 @@ void wxVLogStatus(const char* formatString, va_list argPtr); form of this function takes the error code explicitly as the first argument. - @see wxSysErrorCode(), wxSysErrorMsg() + @see wxSysErrorCode(), wxSysErrorMsgStr() @header{wx/log.h} */