mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-8157 commit from branch
X-SVN-Rev: 31439
This commit is contained in:
parent
a69fe19903
commit
5824cdd742
4 changed files with 6 additions and 5 deletions
|
@ -888,10 +888,11 @@ Collator::getEquivalentReorderCodes(int32_t /* reorderCode */,
|
|||
return 0;
|
||||
}
|
||||
|
||||
int32_t U_EXPORT2 Collator::internalGetShortDefinitionString(const char */*locale*/,
|
||||
int32_t U_EXPORT2
|
||||
Collator::internalGetShortDefinitionString(const char */*locale*/,
|
||||
char */*buffer*/,
|
||||
int32_t /*capacity*/,
|
||||
UErrorCode &status) {
|
||||
UErrorCode &status) const {
|
||||
if(U_SUCCESS(status)) {
|
||||
status = U_UNSUPPORTED_ERROR; /* Shouldn't happen, internal function */
|
||||
}
|
||||
|
|
|
@ -765,7 +765,7 @@ RuleBasedCollator::checkOwned() {
|
|||
int32_t U_EXPORT2 RuleBasedCollator::internalGetShortDefinitionString(const char *locale,
|
||||
char *buffer,
|
||||
int32_t capacity,
|
||||
UErrorCode &status) {
|
||||
UErrorCode &status) const {
|
||||
/* simply delegate */
|
||||
return ucol_getShortDefinitionString(ucollator, locale, buffer, capacity, &status);
|
||||
}
|
||||
|
|
|
@ -1075,7 +1075,7 @@ public:
|
|||
virtual int32_t internalGetShortDefinitionString(const char *locale,
|
||||
char *buffer,
|
||||
int32_t capacity,
|
||||
UErrorCode &status);
|
||||
UErrorCode &status) const;
|
||||
|
||||
private:
|
||||
/**
|
||||
|
|
|
@ -938,7 +938,7 @@ private:
|
|||
virtual int32_t internalGetShortDefinitionString(const char *locale,
|
||||
char *buffer,
|
||||
int32_t capacity,
|
||||
UErrorCode &status);
|
||||
UErrorCode &status) const;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue