diff --git a/wxPython/src/_log.i b/wxPython/src/_log.i index 0664712ee7..4a3b7e26b8 100644 --- a/wxPython/src/_log.i +++ b/wxPython/src/_log.i @@ -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); diff --git a/wxPython/src/_misc_rename.i b/wxPython/src/_misc_rename.i index f88933f476..0112f75771 100644 --- a/wxPython/src/_misc_rename.i +++ b/wxPython/src/_misc_rename.i @@ -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;