From 42e561586676e4970f55547db796d90a95e0f4a8 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 24 May 2004 17:01:12 +0000 Subject: [PATCH] ICU-2487 Don't use ::tolower. It will fail on tr_TR localized machines. Use uprv_tolower. X-SVN-Rev: 15496 --- icu4c/source/i18n/calendar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/i18n/calendar.cpp b/icu4c/source/i18n/calendar.cpp index b6bec0c17f..99d0149018 100644 --- a/icu4c/source/i18n/calendar.cpp +++ b/icu4c/source/i18n/calendar.cpp @@ -254,7 +254,7 @@ class DefaultCalendarFactory : public ICUResourceBundleFactory { } else { int i; for(i=0;keyword[i];i++) { - keyword[i] = ::tolower(keyword[i]); + keyword[i] = uprv_tolower(keyword[i]); } UnicodeString *ret = new UnicodeString("@calendar=",""); (*ret) += UnicodeString(keyword, "");