summaryrefslogtreecommitdiff
path: root/linguistic/source/thesdsp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/thesdsp.cxx')
-rwxr-xr-x[-rw-r--r--]linguistic/source/thesdsp.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/linguistic/source/thesdsp.cxx b/linguistic/source/thesdsp.cxx
index 0ffc4cae15b2..9cd6f0854cc9 100644..100755
--- a/linguistic/source/thesdsp.cxx
+++ b/linguistic/source/thesdsp.cxx
@@ -39,7 +39,7 @@
#include <osl/mutex.hxx>
#include "thesdsp.hxx"
-#include "lngprops.hxx"
+#include "linguistic/lngprops.hxx"
using namespace utl;
using namespace osl;
@@ -54,15 +54,15 @@ using ::rtl::OUString;
///////////////////////////////////////////////////////////////////////////
-static BOOL SvcListHasLanguage(
+static sal_Bool SvcListHasLanguage(
const Sequence< Reference< XThesaurus > > &rRefs,
const Locale &rLocale )
{
- BOOL bHasLanguage = FALSE;
+ sal_Bool bHasLanguage = sal_False;
const Reference< XThesaurus > *pRef = rRefs.getConstArray();
- INT32 nLen = rRefs.getLength();
- for (INT32 k = 0; k < nLen && !bHasLanguage; ++k)
+ sal_Int32 nLen = rRefs.getLength();
+ for (sal_Int32 k = 0; k < nLen && !bHasLanguage; ++k)
{
if (pRef[k].is())
bHasLanguage = pRef[k]->hasLocale( rLocale );
@@ -130,7 +130,7 @@ Sequence< Reference< XMeaning > > SAL_CALL
Sequence< Reference< XMeaning > > aMeanings;
- INT16 nLanguage = LocaleToLanguage( rLocale );
+ sal_Int16 nLanguage = LocaleToLanguage( rLocale );
if (nLanguage == LANGUAGE_NONE || !rTerm.getLength())
return aMeanings;
@@ -152,13 +152,13 @@ Sequence< Reference< XMeaning > > SAL_CALL
if (IsIgnoreControlChars( rProperties, GetPropSet() ))
RemoveControlChars( aChkWord );
- INT32 nLen = pEntry->aSvcRefs.getLength();
+ sal_Int32 nLen = pEntry->aSvcRefs.getLength();
DBG_ASSERT( nLen == pEntry->aSvcImplNames.getLength(),
"lng : sequence length mismatch");
DBG_ASSERT( pEntry->nLastTriedSvcIndex < nLen,
"lng : index out of range");
- INT32 i = 0;
+ sal_Int32 i = 0;
// try already instantiated services first
{
@@ -205,7 +205,7 @@ Sequence< Reference< XMeaning > > SAL_CALL
if (xThes.is() && xThes->hasLocale( rLocale ))
aMeanings = xThes->queryMeanings( aChkWord, rLocale, rProperties );
- pEntry->nLastTriedSvcIndex = (INT16) i;
+ pEntry->nLastTriedSvcIndex = (sal_Int16) i;
++i;
}
@@ -229,9 +229,9 @@ void ThesaurusDispatcher::SetServiceList( const Locale &rLocale,
{
MutexGuard aGuard( GetLinguMutex() );
- INT16 nLanguage = LocaleToLanguage( rLocale );
+ sal_Int16 nLanguage = LocaleToLanguage( rLocale );
- INT32 nLen = rSvcImplNames.getLength();
+ sal_Int32 nLen = rSvcImplNames.getLength();
if (0 == nLen)
// remove entry
aSvcMap.erase( nLanguage );
@@ -263,7 +263,7 @@ Sequence< OUString >
Sequence< OUString > aRes;
// search for entry with that language and use data from that
- INT16 nLanguage = LocaleToLanguage( rLocale );
+ sal_Int16 nLanguage = LocaleToLanguage( rLocale );
ThesaurusDispatcher *pThis = (ThesaurusDispatcher *) this;
const ThesSvcByLangMap_t::iterator aIt( pThis->aSvcMap.find( nLanguage ) );
const LangSvcEntries_Thes *pEntry = aIt != aSvcMap.end() ? aIt->second.get() : NULL;