summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:20:13 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:20:13 +0100
commit4288c320b236e6f1643846a78618c3ce365aec82 (patch)
treefedf60accf8a3af290d24424189fc5c277916142 /linguistic
parentad137adbaea7fcb009b4b22ad00a5e3fd3a89ff5 (diff)
More loplugin:cstylecast: linguistic
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable loplugin:cstylecast for some more cases" plus solenv/clang-format/reformat-formatted-files Change-Id: Ic1b6e8fbf3ba8d3477ee3f5539667427d26c2f43
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdic.cxx8
-rw-r--r--linguistic/source/dicimp.cxx12
-rw-r--r--linguistic/source/hyphdsp.cxx14
-rw-r--r--linguistic/source/lngopt.hxx20
-rw-r--r--linguistic/source/misc.cxx2
-rw-r--r--linguistic/source/spelldsp.cxx4
-rw-r--r--linguistic/source/spelldta.cxx4
-rw-r--r--linguistic/source/thesdsp.cxx2
8 files changed, 33 insertions, 33 deletions
diff --git a/linguistic/source/convdic.cxx b/linguistic/source/convdic.cxx
index 343db3ff1ea7..555244ada44a 100644
--- a/linguistic/source/convdic.cxx
+++ b/linguistic/source/convdic.cxx
@@ -301,9 +301,9 @@ void ConvDic::AddEntry( const OUString &rLeftText, const OUString &rRightText )
if (bMaxCharCountIsValid)
{
if (rLeftText.getLength() > nMaxLeftCharCount)
- nMaxLeftCharCount = (sal_Int16) rLeftText.getLength();
+ nMaxLeftCharCount = static_cast<sal_Int16>(rLeftText.getLength());
if (pFromRight.get() && rRightText.getLength() > nMaxRightCharCount)
- nMaxRightCharCount = (sal_Int16) rRightText.getLength();
+ nMaxRightCharCount = static_cast<sal_Int16>(rRightText.getLength());
}
bIsModified = true;
@@ -513,7 +513,7 @@ sal_Int16 SAL_CALL ConvDic::getMaxCharCount( ConversionDirection eDirection )
ConvMap::iterator aIt = aFromLeft.begin();
while (aIt != aFromLeft.end())
{
- sal_Int16 nTmp = (sal_Int16) (*aIt).first.getLength();
+ sal_Int16 nTmp = static_cast<sal_Int16>((*aIt).first.getLength());
if (nTmp > nMaxLeftCharCount)
nMaxLeftCharCount = nTmp;
++aIt;
@@ -525,7 +525,7 @@ sal_Int16 SAL_CALL ConvDic::getMaxCharCount( ConversionDirection eDirection )
aIt = pFromRight->begin();
while (aIt != pFromRight->end())
{
- sal_Int16 nTmp = (sal_Int16) (*aIt).first.getLength();
+ sal_Int16 nTmp = static_cast<sal_Int16>((*aIt).first.getLength());
if (nTmp > nMaxRightCharCount)
nMaxRightCharCount = nTmp;
++aIt;
diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx
index 42147866991c..b2208a7ca876 100644
--- a/linguistic/source/dicimp.cxx
+++ b/linguistic/source/dicimp.cxx
@@ -726,14 +726,14 @@ bool DictionaryNeo::addEntry_Impl(const uno::Reference< XDictionaryEntry >& xDic
Reference< XSpellAlternatives > xTmpRes;
xSpell.set( xLngSvcMgr->getSpellChecker(), UNO_QUERY );
Sequence< css::beans::PropertyValue > aEmptySeq;
- if (xSpell.is() && (xSpell->isValid( SPELLML_SUPPORT, (sal_uInt16)nLanguage, aEmptySeq )))
+ if (xSpell.is() && (xSpell->isValid( SPELLML_SUPPORT, static_cast<sal_uInt16>(nLanguage), aEmptySeq )))
{
// "Grammar By" sample word is a Hunspell dictionary word?
- if (xSpell->isValid( xDicEntry->getReplacementText(), (sal_uInt16)nLanguage, aEmptySeq ))
+ if (xSpell->isValid( xDicEntry->getReplacementText(), static_cast<sal_uInt16>(nLanguage), aEmptySeq ))
{
xTmpRes = xSpell->spell( "<?xml?><query type='add'><word>" +
xDicEntry->getDictionaryWord() + "</word><word>" + xDicEntry->getReplacementText() +
- "</word></query>", (sal_uInt16)nLanguage, aEmptySeq );
+ "</word></query>", static_cast<sal_uInt16>(nLanguage), aEmptySeq );
bRes = true;
} else
bRes = false;
@@ -810,7 +810,7 @@ sal_Int32 SAL_CALL DictionaryNeo::getCount( )
if (bNeedEntries)
loadEntries( aMainURL );
- return (sal_Int32)aEntries.size();
+ return static_cast<sal_Int32>(aEntries.size());
}
Locale SAL_CALL DictionaryNeo::getLocale( )
@@ -842,7 +842,7 @@ uno::Reference< XDictionaryEntry > SAL_CALL DictionaryNeo::getEntry(
sal_Int32 nPos;
bool bFound = seekEntry( aWord, &nPos, true );
- DBG_ASSERT(!bFound || nPos < (sal_Int32)aEntries.size(), "lng : index out of range");
+ DBG_ASSERT(!bFound || nPos < static_cast<sal_Int32>(aEntries.size()), "lng : index out of range");
return bFound ? aEntries[ nPos ]
: uno::Reference< XDictionaryEntry >();
@@ -896,7 +896,7 @@ sal_Bool SAL_CALL DictionaryNeo::remove( const OUString& aWord )
sal_Int32 nPos;
bool bFound = seekEntry( aWord, &nPos );
- DBG_ASSERT(!bFound || nPos < (sal_Int32)aEntries.size(), "lng : index out of range");
+ DBG_ASSERT(!bFound || nPos < static_cast<sal_Int32>(aEntries.size()), "lng : index out of range");
// remove element if found
if (bFound)
diff --git a/linguistic/source/hyphdsp.cxx b/linguistic/source/hyphdsp.cxx
index f964a15a0fcf..bb1bdfebdef5 100644
--- a/linguistic/source/hyphdsp.cxx
+++ b/linguistic/source/hyphdsp.cxx
@@ -110,7 +110,7 @@ Reference<XHyphenatedWord> HyphenatorDispatcher::buildHyphWord(
if (!bSkip && nHyphIdx >= 0)
{
if (nLeading <= nMaxLeading) {
- nHyphenationPos = (sal_Int16) nHyphIdx;
+ nHyphenationPos = static_cast<sal_Int16>(nHyphIdx);
nOrigHyphPos = i;
}
}
@@ -220,7 +220,7 @@ Reference< XPossibleHyphens > HyphenatorDispatcher::buildPossHyphens(
else
{
if (!bSkip && nHyphIdx >= 0)
- pPos[ nHyphCount++ ] = (sal_Int16) nHyphIdx;
+ pPos[ nHyphCount++ ] = static_cast<sal_Int16>(nHyphIdx);
bSkip = true; //! multiple '=' should count as one only
}
}
@@ -305,7 +305,7 @@ Reference< XHyphenatedWord > SAL_CALL
bWordModified |= RemoveHyphens( aChkWord );
if (IsIgnoreControlChars( rProperties, GetPropSet() ))
bWordModified |= RemoveControlChars( aChkWord );
- sal_Int16 nChkMaxLeading = (sal_Int16) GetPosInWordToCheck( rWord, nMaxLeading );
+ sal_Int16 nChkMaxLeading = static_cast<sal_Int16>(GetPosInWordToCheck( rWord, nMaxLeading ));
// check for results from (positive) dictionaries which have precedence!
Reference< XDictionaryEntry > xEntry;
@@ -379,7 +379,7 @@ Reference< XHyphenatedWord > SAL_CALL
xRes = xHyph->hyphenate( aChkWord, rLocale, nChkMaxLeading,
rProperties );
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
// if language is not supported by the services
@@ -440,7 +440,7 @@ Reference< XHyphenatedWord > SAL_CALL
bWordModified |= RemoveHyphens( aChkWord );
if (IsIgnoreControlChars( rProperties, GetPropSet() ))
bWordModified |= RemoveControlChars( aChkWord );
- sal_Int16 nChkIndex = (sal_Int16) GetPosInWordToCheck( rWord, nIndex );
+ sal_Int16 nChkIndex = static_cast<sal_Int16>(GetPosInWordToCheck( rWord, nIndex ));
// check for results from (positive) dictionaries which have precedence!
Reference< XDictionaryEntry > xEntry;
@@ -510,7 +510,7 @@ Reference< XHyphenatedWord > SAL_CALL
xRes = xHyph->queryAlternativeSpelling( aChkWord, rLocale,
nChkIndex, rProperties );
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
// if language is not supported by the services
@@ -631,7 +631,7 @@ Reference< XPossibleHyphens > SAL_CALL
if (xHyph.is() && xHyph->hasLocale( rLocale ))
xRes = xHyph->createPossibleHyphens( aChkWord, rLocale, rProperties );
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
// if language is not supported by the services
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx
index 30a558633b7d..be90507e69c6 100644
--- a/linguistic/source/lngopt.hxx
+++ b/linguistic/source/lngopt.hxx
@@ -111,23 +111,23 @@ public:
virtual sal_Bool SAL_CALL getIsUseDictionaryList() override
{ return getPropertyBool(UPN_IS_USE_DICTIONARY_LIST); }
virtual void SAL_CALL setIsUseDictionaryList(sal_Bool p1) override
- { setProperty(UPN_IS_USE_DICTIONARY_LIST, (bool) p1); }
+ { setProperty(UPN_IS_USE_DICTIONARY_LIST, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsIgnoreControlCharacters() override
{ return getPropertyBool(UPN_IS_IGNORE_CONTROL_CHARACTERS); }
virtual void SAL_CALL setIsIgnoreControlCharacters(sal_Bool p1) override
- { setProperty(UPN_IS_IGNORE_CONTROL_CHARACTERS, (bool) p1); }
+ { setProperty(UPN_IS_IGNORE_CONTROL_CHARACTERS, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsSpellUpperCase() override
{ return getPropertyBool(UPN_IS_SPELL_UPPER_CASE); }
virtual void SAL_CALL setIsSpellUpperCase(sal_Bool p1) override
- { setProperty(UPN_IS_SPELL_UPPER_CASE, (bool) p1); }
+ { setProperty(UPN_IS_SPELL_UPPER_CASE, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsSpellWithDigits() override
{ return getPropertyBool(UPN_IS_SPELL_WITH_DIGITS); }
virtual void SAL_CALL setIsSpellWithDigits(sal_Bool p1) override
- { setProperty(UPN_IS_SPELL_WITH_DIGITS, (bool) p1); }
+ { setProperty(UPN_IS_SPELL_WITH_DIGITS, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsSpellCapitalization() override
{ return getPropertyBool(UPN_IS_SPELL_CAPITALIZATION); }
virtual void SAL_CALL setIsSpellCapitalization(sal_Bool p1) override
- { setProperty(UPN_IS_SPELL_CAPITALIZATION, (bool) p1); }
+ { setProperty(UPN_IS_SPELL_CAPITALIZATION, static_cast<bool>(p1)); }
virtual sal_Int16 SAL_CALL getHyphMinLeading() override
{ return getPropertyInt16(UPN_HYPH_MIN_LEADING); }
virtual void SAL_CALL setHyphMinLeading(sal_Int16 p1) override
@@ -147,23 +147,23 @@ public:
virtual sal_Bool SAL_CALL getIsHyphAuto() override
{ return getPropertyBool(UPN_IS_HYPH_AUTO); }
virtual void SAL_CALL setIsHyphAuto(sal_Bool p1) override
- { setProperty(UPN_IS_HYPH_AUTO, (bool) p1); }
+ { setProperty(UPN_IS_HYPH_AUTO, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsHyphSpecial() override
{ return getPropertyBool(UPN_IS_HYPH_SPECIAL); }
virtual void SAL_CALL setIsHyphSpecial(sal_Bool p1) override
- { setProperty(UPN_IS_HYPH_SPECIAL, (bool) p1); }
+ { setProperty(UPN_IS_HYPH_SPECIAL, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsSpellAuto() override
{ return getPropertyBool(UPN_IS_SPELL_AUTO); }
virtual void SAL_CALL setIsSpellAuto(sal_Bool p1) override
- { setProperty(UPN_IS_SPELL_AUTO, (bool) p1); }
+ { setProperty(UPN_IS_SPELL_AUTO, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsSpellSpecial() override
{ return getPropertyBool(UPN_IS_SPELL_SPECIAL); }
virtual void SAL_CALL setIsSpellSpecial(sal_Bool p1) override
- { setProperty(UPN_IS_SPELL_SPECIAL, (bool) p1); }
+ { setProperty(UPN_IS_SPELL_SPECIAL, static_cast<bool>(p1)); }
virtual sal_Bool SAL_CALL getIsWrapReverse() override
{ return getPropertyBool(UPN_IS_WRAP_REVERSE); }
virtual void SAL_CALL setIsWrapReverse(sal_Bool p1) override
- { setProperty(UPN_IS_WRAP_REVERSE, (bool) p1); }
+ { setProperty(UPN_IS_WRAP_REVERSE, static_cast<bool>(p1)); }
virtual css::lang::Locale SAL_CALL getDefaultLocale_CJK() override
{ return getPropertyLocale(UPN_DEFAULT_LOCALE_CJK); }
virtual void SAL_CALL setDefaultLocale_CJK(const css::lang::Locale& p1) override
diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx
index 585aaba16468..49b3f2fcaa59 100644
--- a/linguistic/source/misc.cxx
+++ b/linguistic/source/misc.cxx
@@ -400,7 +400,7 @@ uno::Sequence< sal_Int16 >
sal_Int16 *pLang = aLangs.getArray();
for (sal_Int32 i = 0; i < nCount; ++i)
{
- pLang[i] = (sal_uInt16)LinguLocaleToLanguage( pLocale[i] );
+ pLang[i] = static_cast<sal_uInt16>(LinguLocaleToLanguage( pLocale[i] ));
}
return aLangs;
diff --git a/linguistic/source/spelldsp.cxx b/linguistic/source/spelldsp.cxx
index 3fc518a208a2..49009b70c3d5 100644
--- a/linguistic/source/spelldsp.cxx
+++ b/linguistic/source/spelldsp.cxx
@@ -401,7 +401,7 @@ bool SpellCheckerDispatcher::isValid_Impl(
if (bTmpResValid)
bRes = bTmpRes;
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
}
@@ -603,7 +603,7 @@ Reference< XSpellAlternatives > SpellCheckerDispatcher::spell_Impl(
nNumSugestions = nTmpNumSugestions;
}
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
}
diff --git a/linguistic/source/spelldta.cxx b/linguistic/source/spelldta.cxx
index fe9f6a4202c0..4f688f21f56d 100644
--- a/linguistic/source/spelldta.cxx
+++ b/linguistic/source/spelldta.cxx
@@ -140,7 +140,7 @@ std::vector< OUString > MergeProposalSeqs(
size_t nAltCount1 = rAlt1.size();
size_t nAltCount2 = rAlt2.size();
- sal_Int32 nCountNew = std::min<sal_Int32>( nAltCount1 + nAltCount2, (sal_Int32) MAX_PROPOSALS );
+ sal_Int32 nCountNew = std::min<sal_Int32>( nAltCount1 + nAltCount2, sal_Int32(MAX_PROPOSALS) );
aMerged.resize( nCountNew );
sal_Int32 nIndex = 0;
@@ -209,7 +209,7 @@ sal_Int16 SAL_CALL SpellAlternatives::getFailureType()
sal_Int16 SAL_CALL SpellAlternatives::getAlternativesCount()
{
MutexGuard aGuard( GetLinguMutex() );
- return (sal_Int16) aAlt.getLength();
+ return static_cast<sal_Int16>(aAlt.getLength());
}
diff --git a/linguistic/source/thesdsp.cxx b/linguistic/source/thesdsp.cxx
index 064ffb6477cf..d81fbf4f79ef 100644
--- a/linguistic/source/thesdsp.cxx
+++ b/linguistic/source/thesdsp.cxx
@@ -179,7 +179,7 @@ Sequence< Reference< XMeaning > > SAL_CALL
if (xThes.is() && xThes->hasLocale( rLocale ))
aMeanings = xThes->queryMeanings( aChkWord, rLocale, rProperties );
- pEntry->nLastTriedSvcIndex = (sal_Int16) i;
+ pEntry->nLastTriedSvcIndex = static_cast<sal_Int16>(i);
++i;
}