X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/63b8dd39b88479c7171f388f9310be8a0561eb89..1f631557e0eb3c640ac296ad44c7aeaef269d957:/src/mac/dataobj.cpp?ds=sidebyside diff --git a/src/mac/dataobj.cpp b/src/mac/dataobj.cpp index b384ac7036..ebf1f0dbed 100644 --- a/src/mac/dataobj.cpp +++ b/src/mac/dataobj.cpp @@ -86,7 +86,9 @@ void wxDataFormat::SetType( wxDataFormatId Type ) { wxFAIL_MSG( wxT("invalid dataformat") ); - m_format = '????'; + // this is '????' but it can't be used in the code because ??' is + // parsed as a trigraph! + m_format = 0x3f3f3f3f; } }