mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-21289 Switch to using CharString for calling uloc_toLanguageTag().
This commit is contained in:
parent
2df1ab7240
commit
9bce52f003
3 changed files with 21 additions and 6 deletions
|
@ -1200,9 +1200,12 @@ uprv_convertToLCIDPlatform(const char* localeID, UErrorCode* status)
|
|||
}
|
||||
}
|
||||
|
||||
char asciiBCP47Tag[LOCALE_NAME_MAX_LENGTH] = {};
|
||||
// this will change it from de_DE@collation=phonebook to de-DE-u-co-phonebk form
|
||||
(void)uloc_toLanguageTag(mylocaleID, asciiBCP47Tag, UPRV_LENGTHOF(asciiBCP47Tag), false, status);
|
||||
icu::CharString asciiBCP47Tag;
|
||||
{
|
||||
icu::CharStringByteSink sink(&asciiBCP47Tag);
|
||||
ulocimp_toLanguageTag(mylocaleID, sink, false, status);
|
||||
}
|
||||
|
||||
if (U_SUCCESS(*status))
|
||||
{
|
||||
|
|
|
@ -30,7 +30,10 @@
|
|||
#include "unicode/timezone.h"
|
||||
#include "unicode/utmscale.h"
|
||||
|
||||
#include "bytesinkutil.h"
|
||||
#include "charstr.h"
|
||||
#include "cmemory.h"
|
||||
#include "ulocimp.h"
|
||||
#include "uresimp.h"
|
||||
#include "windtfmt.h"
|
||||
#include "wintzimpl.h"
|
||||
|
@ -99,10 +102,13 @@ UnicodeString* Win32DateFormat::getTimeDateFormat(const Calendar *cal, const Loc
|
|||
static UErrorCode GetEquivalentWindowsLocaleName(const Locale& locale, UnicodeString** buffer)
|
||||
{
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
char asciiBCP47Tag[LOCALE_NAME_MAX_LENGTH] = {};
|
||||
|
||||
// Convert from names like "en_CA" and "de_DE@collation=phonebook" to "en-CA" and "de-DE-u-co-phonebk".
|
||||
(void)uloc_toLanguageTag(locale.getName(), asciiBCP47Tag, UPRV_LENGTHOF(asciiBCP47Tag), false, &status);
|
||||
CharString asciiBCP47Tag;
|
||||
{
|
||||
CharStringByteSink sink(&asciiBCP47Tag);
|
||||
ulocimp_toLanguageTag(locale.getName(), sink, false, &status);
|
||||
}
|
||||
|
||||
if (U_SUCCESS(status))
|
||||
{
|
||||
|
|
|
@ -24,8 +24,11 @@
|
|||
#include "unicode/locid.h"
|
||||
#include "unicode/ustring.h"
|
||||
|
||||
#include "bytesinkutil.h"
|
||||
#include "charstr.h"
|
||||
#include "cmemory.h"
|
||||
#include "uassert.h"
|
||||
#include "ulocimp.h"
|
||||
#include "locmap.h"
|
||||
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
|
@ -144,10 +147,13 @@ static void freeCurrencyFormat(CURRENCYFMTW *fmt)
|
|||
static UErrorCode GetEquivalentWindowsLocaleName(const Locale& locale, UnicodeString** buffer)
|
||||
{
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
char asciiBCP47Tag[LOCALE_NAME_MAX_LENGTH] = {};
|
||||
|
||||
// Convert from names like "en_CA" and "de_DE@collation=phonebook" to "en-CA" and "de-DE-u-co-phonebk".
|
||||
(void) uloc_toLanguageTag(locale.getName(), asciiBCP47Tag, UPRV_LENGTHOF(asciiBCP47Tag), false, &status);
|
||||
CharString asciiBCP47Tag;
|
||||
{
|
||||
CharStringByteSink sink(&asciiBCP47Tag);
|
||||
ulocimp_toLanguageTag(locale.getName(), sink, false, &status);
|
||||
}
|
||||
|
||||
if (U_SUCCESS(status))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue