wxLogTrace API change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2003-12-03 00:44:40 +00:00
parent 87c2245b34
commit 1b9631c95d
2 changed files with 4 additions and 2 deletions

View File

@ -218,8 +218,9 @@ void wxLogStatus(const wxString& msg);
%name(LogStatusFrame)void wxLogStatus(wxFrame *pFrame, const wxString& msg);
void wxLogSysError(const wxString& msg);
void wxLogTrace(const wxString& msg);
%name(LogTraceMask)void wxLogTrace(const wxString& mask, const wxString& msg);
%nokwargs wxLogTrace;
void wxLogTrace(unsigned long mask, const wxString& msg);
void wxLogTrace(const wxString& mask, const wxString& msg);
void wxLogGeneric(unsigned long level, const wxString& msg);

View File

@ -214,6 +214,7 @@
%rename(LogStatus) wxLogStatus;
%rename(LogSysError) wxLogSysError;
%rename(LogTrace) wxLogTrace;
%rename(LogTrace) wxLogTrace;
%rename(LogGeneric) wxLogGeneric;
%rename(SafeShowMessage) wxSafeShowMessage;
%rename(LogNull) wxLogNull;