From e86fbab1bade4c76243ab6552d0823989295cad5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 21 Jan 2007 07:07:07 +0000 Subject: [PATCH] suspend logging while in wx.DataFormat.GetId git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44282 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_dataobj.i | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/wxPython/src/_dataobj.i b/wxPython/src/_dataobj.i index 996469245c..f787808682 100644 --- a/wxPython/src/_dataobj.i +++ b/wxPython/src/_dataobj.i @@ -114,10 +114,14 @@ constants.", ""); "Returns the platform-specific number identifying the format.", ""); - DocDeclStr( - wxString , GetId() const, - "Returns the name of a custom format (this function will fail for a -standard format).", ""); + %Rename(_GetId, wxString , GetId() const); + %pythoncode { + def GetId(self): + """Returns the name of a custom format (this function will fail for a +standard format).""" + nolog = wx.LogNull() + return self._GetId() + } DocDeclStr( void , SetId(const wxString& format),