1543153
From cc0b086988c23525f6f7825cb735e8a0d1c54720 Mon Sep 17 00:00:00 2001
1543153
From: Eike Rathke <erack@redhat.com>
1543153
Date: Mon, 18 Dec 2017 20:28:07 +0100
1543153
Subject: [PATCH] Explicitly qualify ICU types with icu:: namespace
1543153
1543153
It will be required by ICU 61 anyway, see
1543153
https://ssl.icu-project.org/repos/icu/trunk/icu4c/readme.html#RecBuild
1543153
1543153
Change-Id: I16b6bc8b8c49713f32424df5fc6db494df7b6892
1543153
Reviewed-on: https://gerrit.libreoffice.org/46738
1543153
Reviewed-by: Eike Rathke <erack@redhat.com>
1543153
Tested-by: Eike Rathke <erack@redhat.com>
1543153
(cherry picked from commit f7961456d81c3ee6ee4c13eac9ef7add6c7ea6b5)
1543153
Reviewed-on: https://gerrit.libreoffice.org/56664
1543153
Tested-by: Jenkins
1543153
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
1543153
---
1543153
 i18npool/inc/collator_unicode.hxx             |  2 +-
1543153
 .../breakiterator/breakiterator_unicode.cxx   | 26 +++++++++----------
1543153
 i18npool/source/collator/collator_unicode.cxx | 16 ++++++------
1543153
 i18npool/source/collator/gencoll_rule.cxx     |  2 +-
1543153
 .../source/ordinalsuffix/ordinalsuffix.cxx    |  2 +-
1543153
 .../transliteration/ignoreDiacritics_CTL.cxx  |  6 ++---
1543153
 6 files changed, 27 insertions(+), 27 deletions(-)
1543153
1543153
diff --git a/i18npool/inc/collator_unicode.hxx b/i18npool/inc/collator_unicode.hxx
1543153
index 69d317797870..d943bc9bc2c1 100644
1543153
--- a/i18npool/inc/collator_unicode.hxx
1543153
+++ b/i18npool/inc/collator_unicode.hxx
1543153
@@ -63,7 +63,7 @@ public:
1543153
 
1543153
 private:
1543153
     const sal_Char *implementationName;
1543153
-    RuleBasedCollator *uca_base, *collator;
1543153
+    icu::RuleBasedCollator *uca_base, *collator;
1543153
 #ifndef DISABLE_DYNLOADING
1543153
     oslModule hModule;
1543153
 #endif
1543153
diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx b/i18npool/source/breakiterator/breakiterator_unicode.cxx
1543153
index b4ca111179c1..77fabbfce84b 100644
1543153
--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx
1543153
+++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx
1543153
@@ -56,14 +56,14 @@ BreakIterator_Unicode::~BreakIterator_Unicode()
1543153
 }
1543153
 
1543153
 /*
1543153
-    Wrapper class to provide public access to the RuleBasedBreakIterator's
1543153
+    Wrapper class to provide public access to the icu::RuleBasedBreakIterator's
1543153
     setbreakType method.
1543153
 */
1543153
-class OOoRuleBasedBreakIterator : public RuleBasedBreakIterator
1543153
+class OOoRuleBasedBreakIterator : public icu::RuleBasedBreakIterator
1543153
 {
1543153
     public:
1543153
 #if (U_ICU_VERSION_MAJOR_NUM < 58)
1543153
-    // RuleBasedBreakIterator::setBreakType() is private as of ICU 58.
1543153
+    // icu::RuleBasedBreakIterator::setBreakType() is private as of ICU 58.
1543153
     void publicSetBreakType(int32_t type)
1543153
         {
1543153
             setBreakType(type);
1543153
@@ -71,7 +71,7 @@ class OOoRuleBasedBreakIterator : public RuleBasedBreakIterator
1543153
 #endif
1543153
     OOoRuleBasedBreakIterator(UDataMemory* image,
1543153
                               UErrorCode &status)
1543153
-        : RuleBasedBreakIterator(image, status)
1543153
+        : icu::RuleBasedBreakIterator(image, status)
1543153
         { };
1543153
 
1543153
 };
1543153
@@ -334,7 +334,7 @@ sal_Int32 SAL_CALL BreakIterator_Unicode::nextCharacters( const OUString& Text,
1543153
         icu::BreakIterator* pBI = character.mpValue->mpBreakIterator.get();
1543153
         for (nDone = 0; nDone < nCount; nDone++) {
1543153
             nStartPos = pBI->following(nStartPos);
1543153
-            if (nStartPos == BreakIterator::DONE)
1543153
+            if (nStartPos == icu::BreakIterator::DONE)
1543153
                 return Text.getLength();
1543153
         }
1543153
     } else { // for CHARACTER mode
1543153
@@ -353,7 +353,7 @@ sal_Int32 SAL_CALL BreakIterator_Unicode::previousCharacters( const OUString& Te
1543153
         icu::BreakIterator* pBI = character.mpValue->mpBreakIterator.get();
1543153
         for (nDone = 0; nDone < nCount; nDone++) {
1543153
             nStartPos = pBI->preceding(nStartPos);
1543153
-            if (nStartPos == BreakIterator::DONE)
1543153
+            if (nStartPos == icu::BreakIterator::DONE)
1543153
                 return 0;
1543153
         }
1543153
     } else { // for BS to delete one char and CHARACTER mode.
1543153
@@ -371,7 +371,7 @@ Boundary SAL_CALL BreakIterator_Unicode::nextWord( const OUString& Text, sal_Int
1543153
 
1543153
     Boundary rv;
1543153
     rv.startPos = icuBI->mpValue->mpBreakIterator->following(nStartPos);
1543153
-    if( rv.startPos >= Text.getLength() || rv.startPos == BreakIterator::DONE )
1543153
+    if( rv.startPos >= Text.getLength() || rv.startPos == icu::BreakIterator::DONE )
1543153
         rv.endPos = result.startPos;
1543153
     else {
1543153
         if ( (rWordType == WordType::ANYWORD_IGNOREWHITESPACES ||
1543153
@@ -380,7 +380,7 @@ Boundary SAL_CALL BreakIterator_Unicode::nextWord( const OUString& Text, sal_Int
1543153
             rv.startPos = icuBI->mpValue->mpBreakIterator->following(rv.startPos);
1543153
 
1543153
         rv.endPos = icuBI->mpValue->mpBreakIterator->following(rv.startPos);
1543153
-        if(rv.endPos == BreakIterator::DONE)
1543153
+        if(rv.endPos == icu::BreakIterator::DONE)
1543153
             rv.endPos = rv.startPos;
1543153
     }
1543153
     return rv;
1543153
@@ -394,7 +394,7 @@ Boundary SAL_CALL BreakIterator_Unicode::previousWord(const OUString& Text, sal_
1543153
 
1543153
     Boundary rv;
1543153
     rv.startPos = icuBI->mpValue->mpBreakIterator->preceding(nStartPos);
1543153
-    if( rv.startPos < 0 || rv.startPos == BreakIterator::DONE)
1543153
+    if( rv.startPos < 0 || rv.startPos == icu::BreakIterator::DONE)
1543153
         rv.endPos = rv.startPos;
1543153
     else {
1543153
         if ( (rWordType == WordType::ANYWORD_IGNOREWHITESPACES ||
1543153
@@ -403,7 +403,7 @@ Boundary SAL_CALL BreakIterator_Unicode::previousWord(const OUString& Text, sal_
1543153
             rv.startPos = icuBI->mpValue->mpBreakIterator->preceding(rv.startPos);
1543153
 
1543153
         rv.endPos = icuBI->mpValue->mpBreakIterator->following(rv.startPos);
1543153
-        if(rv.endPos == BreakIterator::DONE)
1543153
+        if(rv.endPos == icu::BreakIterator::DONE)
1543153
             rv.endPos = rv.startPos;
1543153
     }
1543153
     return rv;
1543153
@@ -435,9 +435,9 @@ Boundary SAL_CALL BreakIterator_Unicode::getWordBoundary( const OUString& Text,
1543153
             rv.endPos = icuBI->mpValue->mpBreakIterator->following(nPos);
1543153
         }
1543153
     }
1543153
-    if (rv.startPos == BreakIterator::DONE)
1543153
+    if (rv.startPos == icu::BreakIterator::DONE)
1543153
         rv.startPos = rv.endPos;
1543153
-    else if (rv.endPos == BreakIterator::DONE)
1543153
+    else if (rv.endPos == icu::BreakIterator::DONE)
1543153
         rv.endPos = rv.startPos;
1543153
 
1543153
     return rv;
1543153
@@ -502,7 +502,7 @@ LineBreakResults SAL_CALL BreakIterator_Unicode::getLineBreak(
1543153
             lbr.breakIndex = nStartPos;
1543153
             lbr.breakType = BreakType::WORDBOUNDARY;
1543153
         } else if (hOptions.rHyphenator.is()) { //Hyphenation break
1543153
-            sal_Int32 boundary_with_punctuation = (pLineBI->next() != BreakIterator::DONE) ? pLineBI->current() : 0;
1543153
+            sal_Int32 boundary_with_punctuation = (pLineBI->next() != icu::BreakIterator::DONE) ? pLineBI->current() : 0;
1543153
             pLineBI->preceding(nStartPos + 1); // reset to check correct hyphenation of "word-word"
1543153
 
1543153
             sal_Int32 nStartPosWordEnd = nStartPos;
1543153
diff --git a/i18npool/source/collator/collator_unicode.cxx b/i18npool/source/collator/collator_unicode.cxx
1543153
index 22b7ed9ae492..552c95ed35f1 100644
1543153
--- a/i18npool/source/collator/collator_unicode.cxx
1543153
+++ b/i18npool/source/collator/collator_unicode.cxx
1543153
@@ -138,7 +138,7 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
1543153
         UErrorCode status = U_ZERO_ERROR;
1543153
         OUString rule = LocaleDataImpl::get()->getCollatorRuleByAlgorithm(rLocale, rAlgorithm);
1543153
         if (!rule.isEmpty()) {
1543153
-            collator = new RuleBasedCollator(reinterpret_cast<const UChar *>(rule.getStr()), status);
1543153
+            collator = new icu::RuleBasedCollator(reinterpret_cast<const UChar *>(rule.getStr()), status);
1543153
             if (! U_SUCCESS(status)) throw RuntimeException();
1543153
         }
1543153
         if (!collator && OUString(LOCAL_RULE_LANGS).indexOf(rLocale.Language) >= 0) {
1543153
@@ -343,7 +343,7 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
1543153
                 size_t ruleImageSize = funclen();
1543153
 
1543153
 #if (U_ICU_VERSION_MAJOR_NUM == 4) && (U_ICU_VERSION_MINOR_NUM <= 2)
1543153
-                uca_base = new RuleBasedCollator(static_cast<UChar*>(NULL), status);
1543153
+                uca_base = new icu::RuleBasedCollator(static_cast<UChar*>(NULL), status);
1543153
 #else
1543153
                 // Not only changed ICU 53.1 the API behavior that a negative
1543153
                 // length (ruleImageSize) now leads to failure, but also that
1543153
@@ -354,11 +354,11 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
1543153
                 // The default collator of the en-US locale would also fulfill
1543153
                 // the requirement. The collator of the actual locale or the
1543153
                 // NULL (default) locale does not.
1543153
-                uca_base = static_cast<RuleBasedCollator*>(icu::Collator::createInstance(
1543153
+                uca_base = static_cast<icu::RuleBasedCollator*>(icu::Collator::createInstance(
1543153
                             icu::Locale::getRoot(), status));
1543153
 #endif
1543153
                 if (! U_SUCCESS(status)) throw RuntimeException();
1543153
-                collator = new RuleBasedCollator(
1543153
+                collator = new icu::RuleBasedCollator(
1543153
                         reinterpret_cast<const uint8_t*>(ruleImage), ruleImageSize, uca_base, status);
1543153
                 if (! U_SUCCESS(status)) throw RuntimeException();
1543153
             }
1543153
@@ -372,17 +372,17 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
1543153
             */
1543153
             icu::Locale icuLocale( LanguageTagIcu::getIcuLocale( LanguageTag( rLocale), rAlgorithm));
1543153
             // load ICU collator
1543153
-            collator = static_cast<RuleBasedCollator*>( icu::Collator::createInstance(icuLocale, status) );
1543153
+            collator = static_cast<icu::RuleBasedCollator*>( icu::Collator::createInstance(icuLocale, status) );
1543153
             if (! U_SUCCESS(status)) throw RuntimeException();
1543153
         }
1543153
     }
1543153
 
1543153
     if (options & CollatorOptions::CollatorOptions_IGNORE_CASE_ACCENT)
1543153
-        collator->setStrength(Collator::PRIMARY);
1543153
+        collator->setStrength(icu::Collator::PRIMARY);
1543153
     else if (options & CollatorOptions::CollatorOptions_IGNORE_CASE)
1543153
-        collator->setStrength(Collator::SECONDARY);
1543153
+        collator->setStrength(icu::Collator::SECONDARY);
1543153
     else
1543153
-        collator->setStrength(Collator::TERTIARY);
1543153
+        collator->setStrength(icu::Collator::TERTIARY);
1543153
 
1543153
     return 0;
1543153
 }
1543153
diff --git a/i18npool/source/collator/gencoll_rule.cxx b/i18npool/source/collator/gencoll_rule.cxx
1543153
index 7d795b5af079..3048d12bb90b 100644
1543153
--- a/i18npool/source/collator/gencoll_rule.cxx
1543153
+++ b/i18npool/source/collator/gencoll_rule.cxx
1543153
@@ -113,7 +113,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
1543153
     //UCollator *coll = ucol_openRules(Obuf.getStr(), Obuf.getLength(), UCOL_OFF,
1543153
     //        UCOL_DEFAULT_STRENGTH, &parseError, &status);
1543153
 
1543153
-    auto coll = o3tl::make_unique<RuleBasedCollator>(reinterpret_cast<const UChar *>(Obuf.getStr()), status);
1543153
+    auto coll = o3tl::make_unique<icu::RuleBasedCollator>(reinterpret_cast<const UChar *>(Obuf.getStr()), status);
1543153
 
1543153
     if (U_SUCCESS(status)) {
1543153
         std::vector<uint8_t> data;
1543153
diff --git a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
1543153
index a3e7d4ab6e8e..f32579894d44 100644
1543153
--- a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
1543153
+++ b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx
1543153
@@ -79,7 +79,7 @@ uno::Sequence< OUString > SAL_CALL OrdinalSuffixService::getOrdinalSuffix( sal_I
1543153
     if (!U_SUCCESS(nCode))
1543153
         return retValue;
1543153
 
1543153
-    std::unique_ptr<NumberFormat> xNumberFormat(icu::NumberFormat::createInstance(aIcuLocale, nCode));
1543153
+    std::unique_ptr<icu::NumberFormat> xNumberFormat(icu::NumberFormat::createInstance(aIcuLocale, nCode));
1543153
     if (!U_SUCCESS(nCode))
1543153
         return retValue;
1543153
 
1543153
diff --git a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
1543153
index 0ddfe645abaa..2b5ca1ed1bdb 100644
1543153
--- a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
1543153
+++ b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
1543153
@@ -35,7 +35,7 @@ ignoreDiacritics_CTL::transliterateChar2Char(sal_Unicode nInChar)
1543153
     if (!m_transliterator)
1543153
         throw css::uno::RuntimeException();
1543153
 
1543153
-    UnicodeString aChar(nInChar);
1543153
+    icu::UnicodeString aChar(nInChar);
1543153
     m_transliterator->transliterate(aChar);
1543153
 
1543153
     if (aChar.isEmpty())
1543153
@@ -68,7 +68,7 @@ ignoreDiacritics_CTL::folding(const OUString& rInStr, sal_Int32 nStartPos,
1543153
         {
1543153
             sal_Int32 nIndex = nPosition;
1543153
             UChar32 nChar = rInStr.iterateCodePoints(&nIndex);
1543153
-            UnicodeString aUStr(nChar);
1543153
+            icu::UnicodeString aUStr(nChar);
1543153
             m_transliterator->transliterate(aUStr);
1543153
 
1543153
             if (nOffset + aUStr.length() > rOffset.getLength())
1543153
@@ -87,7 +87,7 @@ ignoreDiacritics_CTL::folding(const OUString& rInStr, sal_Int32 nStartPos,
1543153
     }
1543153
     else
1543153
     {
1543153
-        UnicodeString aUStr(reinterpret_cast<const UChar*>(rInStr.getStr()) + nStartPos, nCount);
1543153
+        icu::UnicodeString aUStr(reinterpret_cast<const UChar*>(rInStr.getStr()) + nStartPos, nCount);
1543153
         m_transliterator->transliterate(aUStr);
1543153
         return OUString(reinterpret_cast<const sal_Unicode*>(aUStr.getBuffer()), aUStr.length());
1543153
     }
1543153
-- 
1543153
2.17.1
1543153