Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2315)

Unified Diff: source/common/servlk.cpp

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/common/serv.cpp ('k') | source/common/servlkf.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/common/servlk.cpp
diff --git a/source/common/servlk.cpp b/source/common/servlk.cpp
index ab91f768f2a04a5dd9081c12fb9010402e56e36b..5968f7b3102f504511ed4c5b3afdfbb26e0a1194 100644
--- a/source/common/servlk.cpp
+++ b/source/common/servlk.cpp
@@ -158,13 +158,13 @@ UnicodeString&
LocaleKey::debug(UnicodeString& result) const
{
ICUServiceKey::debug(result);
- result.append(" kind: ");
+ result.append((UnicodeString)" kind: ");
result.append(_kind);
- result.append(" primaryID: ");
+ result.append((UnicodeString)" primaryID: ");
result.append(_primaryID);
- result.append(" fallbackID: ");
+ result.append((UnicodeString)" fallbackID: ");
result.append(_fallbackID);
- result.append(" currentID: ");
+ result.append((UnicodeString)" currentID: ");
result.append(_currentID);
return result;
}
@@ -172,7 +172,7 @@ LocaleKey::debug(UnicodeString& result) const
UnicodeString&
LocaleKey::debugClass(UnicodeString& result) const
{
- return result.append("LocaleKey ");
+ return result.append((UnicodeString)"LocaleKey ");
}
#endif
« no previous file with comments | « source/common/serv.cpp ('k') | source/common/servlkf.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698