[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - i18npool/source

Elie Roux elie.roux at telecom-bretagne.eu
Fri Jun 14 02:44:48 PDT 2013


 i18npool/source/breakiterator/breakiterator_unicode.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 9a47b6a3727ff6153b129058a220e93e0dbbbb60
Author: Elie Roux <elie.roux at telecom-bretagne.eu>
Date:   Wed May 29 09:58:17 2013 +0200

    fdo#64926 use icu's breakiterator for Tibetan and Dzongkha
    
    Change-Id: I78010e216eb1582fa5074666f36c95f5b0eceee5
    Reviewed-on: https://gerrit.libreoffice.org/4082
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    (cherry picked from commit 878b09a1a936c2d5bf4461e0123fafd377d948e2)

diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx b/i18npool/source/breakiterator/breakiterator_unicode.cxx
index 620bba1..549abd1 100644
--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx
+++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx
@@ -120,7 +120,8 @@ void SAL_CALL BreakIterator_Unicode::loadICUBreakIterator(const com::sun::star::
                 rbi = new OOoRuleBasedBreakIterator(udata_open("OpenOffice", "brk",
                     OUStringToOString(breakRules[breakType], RTL_TEXTENCODING_ASCII_US).getStr(), &status), status);
             }
-            else if (rLocale.Language != "th" && rLocale.Language != "km") //use icu's breakiterator for Thai and Khmer
+            //use icu's breakiterator for Thai, Khmer, Tibetan and Dzongkha
+            else if (rLocale.Language != "th" && rLocale.Language != "km" && rLocale.Language != "bo" && rLocale.Language != "dz")
             {
                 status = U_ZERO_ERROR;
                 OStringBuffer aUDName(64);


More information about the Libreoffice-commits mailing list