X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b3b7f55560a6e43bde4fe0692d08ab7d90c6cf8..ac9d38d811747d38bcd1747fb95878b03cdf24f0:/src/common/intl.cpp?ds=sidebyside diff --git a/src/common/intl.cpp b/src/common/intl.cpp index b718973fea..c03a9824b3 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1940,12 +1940,9 @@ void wxLocale::AddCatalogLookupPathPrefix(const wxString& prefix) // because the locale identifier (kCFLocaleIdentifier) is formatted a little bit differently, eg // az_Cyrl_AZ@calendar=buddhist;currency=JPY we just recreate the base info as expected by wx here - CFTypeRef cfstr = CFLocaleGetValue(userLocaleRef, kCFLocaleLanguageCode); - wxMacCFStringHolder str(CFStringCreateCopy(NULL, static_cast(cfstr))); + wxMacCFStringHolder str(wxCFRetain((CFStringRef)CFLocaleGetValue(userLocaleRef, kCFLocaleLanguageCode))); langFull = str.AsString()+"_"; - - cfstr = CFLocaleGetValue(userLocaleRef, kCFLocaleCountryCode); - str.Assign(CFStringCreateCopy(NULL, static_cast(cfstr))); + str.Assign(wxCFRetain((CFStringRef)CFLocaleGetValue(userLocaleRef, kCFLocaleCountryCode))); langFull += str.AsString(); #else if (!wxGetEnv(wxT("LC_ALL"), &langFull) &&