From: Stefan Csomor Date: Sat, 8 Apr 2006 15:26:05 +0000 (+0000) Subject: fixing Clipboard::IsSupported when asking for unicode text and only non-unicode text... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3271d7376a34a73139db3d9d3d2f23426539e50e fixing Clipboard::IsSupported when asking for unicode text and only non-unicode text is available git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/clipbrd.cpp b/src/mac/carbon/clipbrd.cpp index 14fdda89c2..cb88eee08a 100644 --- a/src/mac/carbon/clipbrd.cpp +++ b/src/mac/carbon/clipbrd.cpp @@ -329,6 +329,16 @@ bool wxClipboard::IsSupported( const wxDataFormat &dataFormat ) if (err == noErr) hasData = true; } + else if ( dataFormat.GetType() == wxDF_UNICODETEXT ) + { + err = GetScrapFlavorFlags( scrapRef, 'TEXT', &flavorFlags ); + if (err == noErr) + { + err = GetScrapFlavorSize( scrapRef, 'TEXT', &byteCount ); + if (err == noErr) + hasData = true; + } + } } #else