From: Stefan Csomor Date: Mon, 10 Dec 2007 22:00:03 +0000 (+0000) Subject: making sure it always returns a valid string X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ea6bea0f4f215a00543821611c5a3b22f6df3fd4 making sure it always returns a valid string git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/dataobj.cpp b/src/mac/carbon/dataobj.cpp index c31a36f618..cdec68b05d 100644 --- a/src/mac/carbon/dataobj.cpp +++ b/src/mac/carbon/dataobj.cpp @@ -147,10 +147,7 @@ void wxDataFormat::SetType( wxDataFormatId dataType ) wxString wxDataFormat::GetId() const { - wxCHECK_MSG( !IsStandard(), wxEmptyString, - wxT("name of predefined format cannot be retrieved") ); - - return m_id; + return wxCFStringRef(wxCFRetain((CFStringRef)m_format)).AsString(); } void wxDataFormat::SetId( NativeFormat format )