summaryrefslogtreecommitdiff
path: root/lingucomponent
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-08-14 18:40:03 +0000
committerKurt Zenker <kz@openoffice.org>2008-08-14 18:40:03 +0000
commit3dc6626914c5bca88398e4b15867d125f4b2a0eb (patch)
treeb30ef9811b843890396ee9e6fd74bc3ff33c2b78 /lingucomponent
parentf0710ed1f0ff0499574e0e14f10fa170591db736 (diff)
INTEGRATION: CWS tl58 (1.23.14); FILE MERGED
2008/08/06 09:40:12 tl 1.23.14.1: #i92453# fix for extensions defining multiple dictionaries for the same locale
Diffstat (limited to 'lingucomponent')
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
index dffd212ef936..ecc68f652307 100644
--- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx
+++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: sspellimp.cxx,v $
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
* This file is part of OpenOffice.org.
*
@@ -189,9 +189,14 @@ Sequence< Locale > SAL_CALL SpellChecker::getLocales()
aSuppLocales[k++] = aTmp;
}
- //! now have one dictionary entry for each locale
- //! (this is necessary in order to allow for several locales for one dictionary)
- numdict = aSuppLocales.getLength();
+ //! For each dictionary and each locale we need a seperate entry.
+ //! If this results in more than one dictionary per locale than (for now)
+ //! it is undefined which dictionary gets used.
+ //! In the future the implementation should support using several dictionaries
+ //! for one locale.
+ numdict = 0;
+ for (aDictIt = aDics.begin(); aDictIt != aDics.end(); ++aDictIt)
+ numdict = numdict + aDictIt->aLocaleNames.getLength();
// add dictionary information
aDicts = new Hunspell* [numdict];