From d19fe998c862a2dfa5fc53591b0bbc919a0ec442 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 30 Mar 2009 21:08:58 +0000 Subject: [PATCH] compilation fix after recent changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/core/cfstring.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/osx/core/cfstring.cpp b/src/osx/core/cfstring.cpp index a65c5cb361..dff2ab6d9e 100644 --- a/src/osx/core/cfstring.cpp +++ b/src/osx/core/cfstring.cpp @@ -611,15 +611,18 @@ wxCFStringRef::wxCFStringRef( const wxString &st , wxFontEncoding WXUNUSED_IN_UN #if wxUSE_UNICODE #if wxUSE_UNICODE_WCHAR // native = wchar_t 4 bytes for us - reset( CFStringCreateWithBytes( kCFAllocatorDefault, - (const UInt8*)str.wc_str() , str.length()*4, kCFStringEncodingUTF32Native, false /* no BOM */ ) ); + const wchar_t * const data = str.wc_str(); + const size_t size = str.length()*sizeof(wchar_t); #elif wxUSE_UNICODE_UTF8 // native = utf8 - reset( CFStringCreateWithBytes( kCFAllocatorDefault, - (const UInt8*) str.utf8_str() , str.utf8_length() , kCFStringEncodingUTF8, false /* no BOM */ ) ); + const char * const data = str.utf8_str(); + const size_t size = str.utf8_length(); #else - #error "unsupported unicode representation" + #error "unsupported Unicode representation" #endif + + reset( CFStringCreateWithBytes( kCFAllocatorDefault, + (const UInt8*)data, size, kCFStringEncodingUTF8, false /* no BOM */ ) ); #else // not wxUSE_UNICODE reset( CFStringCreateWithCString( kCFAllocatorSystemDefault , str.c_str() , wxMacGetSystemEncFromFontEnc( encoding ) ) );