| Index: source/common/servslkf.cpp
|
| diff --git a/source/common/servslkf.cpp b/source/common/servslkf.cpp
|
| index 583f375a2c429fc96924b36c2435019c2046cc31..4222d2130ab32b73405fb3c2c4d951c1a6e90759 100644
|
| --- a/source/common/servslkf.cpp
|
| +++ b/source/common/servslkf.cpp
|
| @@ -97,9 +97,9 @@ UnicodeString&
|
| SimpleLocaleKeyFactory::debug(UnicodeString& result) const
|
| {
|
| LocaleKeyFactory::debug(result);
|
| - result.append(", id: ");
|
| + result.append((UnicodeString)", id: ");
|
| result.append(_id);
|
| - result.append(", kind: ");
|
| + result.append((UnicodeString)", kind: ");
|
| result.append(_kind);
|
| return result;
|
| }
|
| @@ -107,7 +107,7 @@ SimpleLocaleKeyFactory::debug(UnicodeString& result) const
|
| UnicodeString&
|
| SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const
|
| {
|
| - return result.append("SimpleLocaleKeyFactory");
|
| + return result.append((UnicodeString)"SimpleLocaleKeyFactory");
|
| }
|
| #endif
|
|
|
|
|