From 8baec2bb724af8bb0450944dbd08702e882acab2 Mon Sep 17 00:00:00 2001 From: Alan Liu Date: Wed, 7 Nov 2001 17:54:01 +0000 Subject: [PATCH] ICU-1007 make decompose() do NF*D instead of NF*C X-SVN-Rev: 6663 --- icu4c/source/common/normlzr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/common/normlzr.cpp b/icu4c/source/common/normlzr.cpp index 69c43c4622..0e74174d9d 100644 --- a/icu4c/source/common/normlzr.cpp +++ b/icu4c/source/common/normlzr.cpp @@ -290,7 +290,7 @@ Normalizer::decompose(const UnicodeString& source, result.setToBogus(); } else { UChar *buffer=result.getBuffer(source.length()); - int32_t length=unorm_compose(buffer, result.getCapacity(), + int32_t length=unorm_decompose(buffer, result.getCapacity(), source.getBuffer(), source.length(), compat, (options&IGNORE_HANGUL)!=0, &status);