diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-01-31 17:35:45 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-01-31 17:35:45 +0000 |
commit | e84b6756255aa6b04491b9b6cfe68bd70a3d0191 (patch) | |
tree | 58f046cf21e5df1e3a03b88702a9126e02159816 /i18npool | |
parent | e9d471c88a23fbf45a1371b67412b8ad2e72853a (diff) |
INTEGRATION: CWS i18n24 (1.8.36); FILE MERGED
2006/01/10 22:49:12 khong 1.8.36.1: #i60331 create seperate collator data library
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/collator/collatorImpl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/collator/collatorImpl.cxx b/i18npool/source/collator/collatorImpl.cxx index 90d342901695..7aac83148de7 100644 --- a/i18npool/source/collator/collatorImpl.cxx +++ b/i18npool/source/collator/collatorImpl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: collatorImpl.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-07 17:06:53 $ + * last change: $Author: kz $ $Date: 2006-01-31 18:35:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -108,7 +108,7 @@ CollatorImpl::loadCollatorAlgorithm(const OUString& impl, const lang::Locale& rL loadCachedCollator(rLocale, impl); if (cachedItem) - cachedItem->xC->loadCollatorAlgorithm(cachedItem->service, nLocale = rLocale, collatorOptions); + cachedItem->xC->loadCollatorAlgorithm(cachedItem->algorithm, nLocale = rLocale, collatorOptions); else throw RuntimeException(); // impl could not be loaded @@ -227,7 +227,7 @@ CollatorImpl::loadCachedCollator(const lang::Locale& rLocale, const OUString& rS // load service with name <base>_<lang>_<algorithm> createCollator(rLocale, aBuf.append(rLocale.Language).append(under).append(rSortAlgorithm).makeStringAndClear(), rSortAlgorithm)) || - // load service with name <algorithm> + // load service with name <base>_<algorithm> (a > 0 && createCollator(rLocale, rSortAlgorithm, rSortAlgorithm)) || // load default service with name <base>_Unicode |