mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 02:07:15 +00:00
ICU-9139 namespace bug fix
X-SVN-Rev: 31559
This commit is contained in:
parent
c677a3ad5e
commit
66325c9f16
1 changed files with 1 additions and 1 deletions
|
@ -597,7 +597,7 @@ ucol_getShortDefinitionString(const UCollator *coll,
|
|||
{
|
||||
if(U_FAILURE(*status)) return 0;
|
||||
if(coll->delegate != NULL) {
|
||||
return ((Collator*)coll->delegate)->internalGetShortDefinitionString(locale,dst,capacity,*status);
|
||||
return ((icu::Collator*)coll->delegate)->internalGetShortDefinitionString(locale,dst,capacity,*status);
|
||||
}
|
||||
char buffer[internalBufferSize];
|
||||
uprv_memset(buffer, 0, internalBufferSize*sizeof(char));
|
||||
|
|
Loading…
Add table
Reference in a new issue