diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-03 08:56:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-03 08:59:38 +0200 |
commit | ded5965ce8098c1d46078be37264b15ca8b5a3f1 (patch) | |
tree | bcdbbf0a6f34dacdde20ff65d2cc17f27b52b55a /editeng/source/misc | |
parent | 82ce4dd60785cf08f7844d20fd8051d6b30c3bf1 (diff) |
editeng: sal_Bool->bool
Change-Id: I51b4ae54c2c440d38879439f74d4fea39d243004
Diffstat (limited to 'editeng/source/misc')
-rw-r--r-- | editeng/source/misc/unolingu.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx index 4b49b3300727..5746459817b0 100644 --- a/editeng/source/misc/unolingu.cxx +++ b/editeng/source/misc/unolingu.cxx @@ -500,14 +500,14 @@ void LinguMgrExitLstnr::AtExit() LinguMgr::xIgnoreAll = 0; LinguMgr::xChangeAll = 0; - LinguMgr::bExiting = sal_True; + LinguMgr::bExiting = true; LinguMgr::pExitLstnr = 0; } LinguMgrExitLstnr * LinguMgr::pExitLstnr = 0; -sal_Bool LinguMgr::bExiting = sal_False; +bool LinguMgr::bExiting = false; uno::Reference< XLinguServiceManager2 > LinguMgr::xLngSvcMgr = 0; uno::Reference< XSpellChecker1 > LinguMgr::xSpell = 0; uno::Reference< XHyphenator > LinguMgr::xHyph = 0; @@ -808,7 +808,7 @@ SvxAlternativeSpelling SvxGetAltSpelling( aRes.aReplacement = OUString( aAltWord.copy( nL, nAltLen - nL - nR ) ); aRes.nChangedPos = (sal_Int16) nL; aRes.nChangedLength = nLen - nL - nR; - aRes.bIsAltSpelling = sal_True; + aRes.bIsAltSpelling = true; aRes.xHyphWord = rHyphWord; } return aRes; |