]> git.saurik.com Git - wxWidgets.git/commitdiff
wxLogTrace API change
authorRobin Dunn <robin@alldunn.com>
Wed, 3 Dec 2003 00:44:40 +0000 (00:44 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 3 Dec 2003 00:44:40 +0000 (00:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_log.i
wxPython/src/_misc_rename.i

index 0664712ee7442bff71fbae289f4cd9cc80218e7d..4a3b7e26b8670ee2090c23231c610a2ace92c001 100644 (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);
 
index f88933f476be8c42860ba1138c9aea87011b4de1..0112f75771666a29b4b64aef8129196b9969f076 100644 (file)
 %rename(LogStatus)                          wxLogStatus;
 %rename(LogSysError)                        wxLogSysError;
 %rename(LogTrace)                           wxLogTrace;
+%rename(LogTrace)                           wxLogTrace;
 %rename(LogGeneric)                         wxLogGeneric;
 %rename(SafeShowMessage)                    wxSafeShowMessage;
 %rename(LogNull)                            wxLogNull;