summaryrefslogtreecommitdiff
path: root/linguistic/source/thesdsp.cxx
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2001-06-21 08:00:49 +0000
committerThomas Lange <tl@openoffice.org>2001-06-21 08:00:49 +0000
commitf8546cdb5de0c788933bfee86659c3e1c56af4e8 (patch)
tree33e0de528832b3bfa4aeb58e433968eff92cdfd6 /linguistic/source/thesdsp.cxx
parent4867969b363babdf6d915d2ee0b37feeba07a803 (diff)
#88571# remove entries for languages with no listed service implementation-name
Diffstat (limited to 'linguistic/source/thesdsp.cxx')
-rw-r--r--linguistic/source/thesdsp.cxx40
1 files changed, 23 insertions, 17 deletions
diff --git a/linguistic/source/thesdsp.cxx b/linguistic/source/thesdsp.cxx
index 61888d04ed1a..c3583c90475e 100644
--- a/linguistic/source/thesdsp.cxx
+++ b/linguistic/source/thesdsp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: thesdsp.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: tl $ $Date: 2001-06-13 10:55:50 $
+ * last change: $Author: tl $ $Date: 2001-06-21 09:00:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -179,7 +179,7 @@ sal_Bool SAL_CALL
throw(RuntimeException)
{
MutexGuard aGuard( GetLinguMutex() );
- return 0 != aSvcList.Seek( LocaleToLanguage( rLocale ) );
+ return 0 != aSvcList.Get( LocaleToLanguage( rLocale ) );
}
@@ -198,7 +198,7 @@ Sequence< Reference< XMeaning > > SAL_CALL
return aMeanings;
// search for entry with that language
- SeqLangSvcEntry_Thes *pEntry = aSvcList.Seek( nLanguage );
+ SeqLangSvcEntry_Thes *pEntry = aSvcList.Get( nLanguage );
if (!pEntry)
{
@@ -283,22 +283,28 @@ void ThesaurusDispatcher::SetServiceList( const Locale &rLocale,
{
MutexGuard aGuard( GetLinguMutex() );
- // search for entry with that language
INT16 nLanguage = LocaleToLanguage( rLocale );
- SeqLangSvcEntry_Thes *pEntry = aSvcList.Seek( nLanguage );
- if (pEntry)
- {
- pEntry->aSvcImplNames = rSvcImplNames;
- pEntry->aSvcRefs = Sequence< Reference < XThesaurus > >(
- rSvcImplNames.getLength() );
- pEntry->aFlags = SvcFlags();
- }
+ if (0 == rSvcImplNames.getLength())
+ // remove entry
+ aSvcList.Remove( nLanguage );
else
{
- pEntry = new SeqLangSvcEntry_Thes( rSvcImplNames );
- aSvcList.Insert( nLanguage, pEntry );
- DBG_ASSERT( aSvcList.Seek( nLanguage ), "lng : Insert failed" );
+ // modify/add entry
+ SeqLangSvcEntry_Thes *pEntry = aSvcList.Get( nLanguage );
+ if (pEntry)
+ {
+ pEntry->aSvcImplNames = rSvcImplNames;
+ pEntry->aSvcRefs = Sequence< Reference < XThesaurus > >(
+ rSvcImplNames.getLength() );
+ pEntry->aFlags = SvcFlags();
+ }
+ else
+ {
+ pEntry = new SeqLangSvcEntry_Thes( rSvcImplNames );
+ aSvcList.Insert( nLanguage, pEntry );
+ DBG_ASSERT( aSvcList.Get( nLanguage ), "lng : Insert failed" );
+ }
}
}
@@ -313,7 +319,7 @@ Sequence< OUString >
// search for entry with that language and use data from that
INT16 nLanguage = LocaleToLanguage( rLocale );
ThesaurusDispatcher *pThis = (ThesaurusDispatcher *) this;
- const SeqLangSvcEntry_Thes *pEntry = pThis->aSvcList.Seek( nLanguage );
+ const SeqLangSvcEntry_Thes *pEntry = pThis->aSvcList.Get( nLanguage );
if (pEntry)
aRes = pEntry->aSvcImplNames;