summaryrefslogtreecommitdiffstats
path: root/sw/inc/txatritr.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@gmx.com>2012-11-04 11:38:23 +0100
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-11-05 03:52:25 +0000
commitefda195ac9a5f52c7df9dba1ace6c53b8da0f260 (patch)
treee1884e910fa8b541b88df4614dd343e233e34099 /sw/inc/txatritr.hxx
parentfix several bugs around cond format export to ooxml (diff)
downloadcore-efda195ac9a5f52c7df9dba1ace6c53b8da0f260.tar.gz
core-efda195ac9a5f52c7df9dba1ace6c53b8da0f260.zip
sal_Bool to bool
Change-Id: I8a4890c6b0e466417387a09259e32dff57c640d6 Reviewed-on: https://gerrit.libreoffice.org/979 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sw/inc/txatritr.hxx')
-rw-r--r--sw/inc/txatritr.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/txatritr.hxx b/sw/inc/txatritr.hxx
index fd2c2fec1d4b..05ed48fb3dbf 100644
--- a/sw/inc/txatritr.hxx
+++ b/sw/inc/txatritr.hxx
@@ -36,13 +36,13 @@ class SwScriptIterator
const String& rText;
xub_StrLen nChgPos;
sal_uInt16 nCurScript;
- sal_Bool bForward;
+ bool bForward;
public:
SwScriptIterator( const String& rStr, xub_StrLen nStart = 0,
- sal_Bool bFrwrd = sal_True );
+ bool bFrwrd = true );
- sal_Bool Next();
+ bool Next();
sal_uInt16 GetCurrScript() const { return nCurScript; }
xub_StrLen GetScriptChgPos() const { return nChgPos; }
@@ -58,16 +58,16 @@ class SwTxtAttrIterator
const SfxPoolItem *pParaItem, *pCurItem;
xub_StrLen nChgPos;
sal_uInt16 nAttrPos, nWhichId;
- sal_Bool bIsUseGetWhichOfScript;
+ bool bIsUseGetWhichOfScript;
void AddToStack( const SwTxtAttr& rAttr );
void SearchNextChg();
public:
SwTxtAttrIterator( const SwTxtNode& rTxtNd, sal_uInt16 nWhichId,
- xub_StrLen nStart = 0, sal_Bool bUseGetWhichOfScript = sal_True );
+ xub_StrLen nStart = 0, bool bUseGetWhichOfScript = true );
- sal_Bool Next();
+ bool Next();
const SfxPoolItem& GetAttr() const { return *pCurItem; }
xub_StrLen GetChgPos() const { return nChgPos; }
@@ -79,7 +79,7 @@ class SwLanguageIterator : public SwTxtAttrIterator
public:
SwLanguageIterator( const SwTxtNode& rTxtNode, xub_StrLen nStart = 0,
sal_uInt16 nWhich = RES_CHRATR_LANGUAGE,
- sal_Bool bUseGetWhichOfScript = sal_True )
+ bool bUseGetWhichOfScript = true )
: SwTxtAttrIterator( rTxtNode, nWhich, nStart, bUseGetWhichOfScript )
{}