From: Václav Slavík Date: Sun, 23 Mar 2008 12:42:44 +0000 (+0000) Subject: wxError, wxFatalError, wxDebugMsg are not only deprecated, they don't exist anymore... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e71fa8fa2fe99756ab214544e52204ee0a940fb0 wxError, wxFatalError, wxDebugMsg are not only deprecated, they don't exist anymore -- removed from docs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52733 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/utils.h b/interface/utils.h index e6337c5f9e..4f48f7dfc0 100644 --- a/interface/utils.h +++ b/interface/utils.h @@ -206,61 +206,6 @@ bool wxUnsetEnv(const wxString& var); -/** @ingroup group_funcmacro_log */ -//@{ - -/** - @deprecated Replaced by wxLogDebug(). - - Displays a debugging message. Under Windows, this will appear on the - debugger command window, and under Unix, it will be written to standard - error. - - The syntax is identical to @e printf(), pass a format string and a variable - list of arguments. - - @note Under Windows, if your application crashes before the message appears - in the debugging window, put a wxYield() call after each wxDebugMsg() - call. wxDebugMsg() seems to be broken under WIN32s (at least for - Watcom C++): preformat your messages and use OutputDebugString - instead. - - @header{wx/utils.h} -*/ -void wxDebugMsg(const wxString& format, ... ); - -/** - @deprecated Replaced by wxLogFatalError(). - - Displays @a message and exits. This writes to standard error under Unix, - and pops up a message box under Windows. Used for fatal internal wxWidgets - errors. - - @eee wxError() - - @header{wx/utils.h} -*/ -void wxFatalError(const wxString& message, - const wxString& title = "wxWidgets Fatal Error"); - -/** - @deprecated Replaced by wxLogError(). - - Displays @a message and continues. This writes to standard error under - Unix, and pops up a message box under Windows. Used for internal wxWidgets - errors. - - @see wxFatalError() - - @header{wx/utils.h} -*/ -void wxError(const wxString& message, - const wxString& title = "wxWidgets Internal Error"); - -//@} - - - /** Returns the type of power source as one of @c wxPOWER_SOCKET, @c wxPOWER_BATTERY or @c wxPOWER_UNKNOWN.