From babb54cb900008070027d7608e685869cb4e9eac Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 14 Aug 2007 20:45:46 +0000 Subject: [PATCH] ICU-5454 Fix for UCONFIG_NO_CONVERSION X-SVN-Rev: 22383 --- icu4c/source/i18n/vtzone.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/i18n/vtzone.cpp b/icu4c/source/i18n/vtzone.cpp index 881101fab7..c8aa367aea 100644 --- a/icu4c/source/i18n/vtzone.cpp +++ b/icu4c/source/i18n/vtzone.cpp @@ -349,9 +349,9 @@ static void millisToOffset(int32_t millis, UnicodeString& str) { static void getDefaultTZName(const UnicodeString tzid, UBool isDST, UnicodeString& tzname) { tzname = tzid; if (isDST) { - tzname += "(DST)"; + tzname += UNICODE_STRING_SIMPLE("(DST)"); } else { - tzname += "(STD)"; + tzname += UNICODE_STRING_SIMPLE("(STD)"); } }