diff options
author | Vladimir Glazunov <vg@openoffice.org> | 2010-09-29 10:05:34 +0200 |
---|---|---|
committer | Vladimir Glazunov <vg@openoffice.org> | 2010-09-29 10:05:34 +0200 |
commit | 03aa7ab71b66b63704a3dd1a98e024fd97c5ff6b (patch) | |
tree | e0c7c0b26c4233fe00681f80e8835eb331b2b893 /i18npool | |
parent | fdd560163ef33ffec53b8cd559014a1b40958df0 (diff) | |
parent | 4e690b6439201fd2280081d42455d9daae70666d (diff) |
CWS-TOOLING: integrate CWS tl82
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/breakiterator/breakiteratorImpl.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx b/i18npool/source/breakiterator/breakiteratorImpl.cxx index e4e08d42df43..d22203d100c7 100644 --- a/i18npool/source/breakiterator/breakiteratorImpl.cxx +++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx @@ -488,6 +488,10 @@ sal_Int16 BreakIteratorImpl::getScriptClass(sal_uInt32 currentChar) // workaround for Coptic else if ( 0x2C80 <= currentChar && 0x2CE3 >= currentChar) nRet = ScriptType::LATIN; + // work-around for ligatures (see http://www.unicode.org/charts/PDF/UFB00.pdf) + else if ((0xFB00 <= currentChar && currentChar <= 0xFB06) || + (0xFB13 <= currentChar && currentChar <= 0xFB17)) + nRet = ScriptType::LATIN; else { UBlockCode block=ublock_getCode(currentChar); sal_uInt16 i; |