X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4dd1e19a281da5d1e23b12fd76c9fc242bcb1d6..333e57d578e9e0fb6555452b5a53698ffd85ee69:/include/wx/mac/corefoundation/private/strconv_cf.h diff --git a/include/wx/mac/corefoundation/private/strconv_cf.h b/include/wx/mac/corefoundation/private/strconv_cf.h index bce9641e78..07a98a1de0 100644 --- a/include/wx/mac/corefoundation/private/strconv_cf.h +++ b/include/wx/mac/corefoundation/private/strconv_cf.h @@ -270,9 +270,13 @@ inline CFStringEncoding wxCFStringEncFromFontEnc(wxFontEncoding encoding) case wxFONTENCODING_MACGAELIC : enc = kCFStringEncodingMacGaelic ; break ; -// case wxFONTENCODING_MACKEYBOARD : -// enc = kCFStringEncodingMacKeyboardGlyphs ; -// break ; + /* CFString is known to support this back to the original CarbonLib */ + /* http://developer.apple.com/samplecode/CarbonMDEF/listing2.html */ + case wxFONTENCODING_MACKEYBOARD : + /* We don't wish to pollute the namespace too much, even though we're a private header. */ + /* The constant is well-defined as 41 and is not expected to change. */ + enc = 41 /*kTextEncodingMacKeyboardGlyphs*/ ; + break ; default : // because gcc is picky