X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/63b8dd39b88479c7171f388f9310be8a0561eb89..407f0db0504c39e022c063d64c03e2ff2117d5b3:/src/mac/carbon/dataobj.cpp diff --git a/src/mac/carbon/dataobj.cpp b/src/mac/carbon/dataobj.cpp index b384ac7036..ebf1f0dbed 100644 --- a/src/mac/carbon/dataobj.cpp +++ b/src/mac/carbon/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; } }