From 82d331dd6bd4c96ff99f30fa78ff7ccc28a2be0c Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Tue, 1 Jul 2014 16:51:31 +0000 Subject: [PATCH] ICU-10842 fix to namespace usage X-SVN-Rev: 35976 --- icu4c/source/i18n/ucurr.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icu4c/source/i18n/ucurr.cpp b/icu4c/source/i18n/ucurr.cpp index 110c8de80c5..021ad724249 100644 --- a/icu4c/source/i18n/ucurr.cpp +++ b/icu4c/source/i18n/ucurr.cpp @@ -171,8 +171,8 @@ static void makeEquivalent( // already equivalent return; } - EquivIterator leftIter(*hash, lhs); - EquivIterator rightIter(*hash, rhs); + icu::EquivIterator leftIter(*hash, lhs); + icu::EquivIterator rightIter(*hash, rhs); const icu::UnicodeString *firstLeft = leftIter.next(); const icu::UnicodeString *firstRight = rightIter.next(); const icu::UnicodeString *nextLeft = firstLeft; @@ -224,7 +224,7 @@ static void makeEquivalent( // countEquivalent does not include s itself in the count. static int32_t countEquivalent(const icu::Hashtable &hash, const icu::UnicodeString &s) { int32_t result = 0; - EquivIterator iter(hash, s); + icu::EquivIterator iter(hash, s); while (iter.next() != NULL) { ++result; } @@ -1071,7 +1071,7 @@ collectCurrencyNames(const char* locale, (*currencySymbols)[(*total_currency_symbol_count)++].currencyNameLen = len; // Add equivalent symbols if (currencySymbolsEquiv != NULL) { - EquivIterator iter(*currencySymbolsEquiv, UnicodeString(TRUE, s, len)); + icu::EquivIterator iter(*currencySymbolsEquiv, UnicodeString(TRUE, s, len)); const UnicodeString *symbol; while ((symbol = iter.next()) != NULL) { (*currencySymbols)[*total_currency_symbol_count].IsoCode = iso; -- 2.40.0