summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwpbulletstylemgr.hxx
parentlingucomponent: sal_Bool->bool (diff)
downloadcore-2692047aacef7b4288f995ce6ff2db5e16b71014.tar.gz
core-2692047aacef7b4288f995ce6ff2db5e16b71014.zip
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpbulletstylemgr.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpbulletstylemgr.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.hxx b/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
index 773738a8fd05..94622b2c9f46 100644
--- a/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
+++ b/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
@@ -87,9 +87,9 @@ public:
OUString RegisterBulletStyle(LwpPara* pPara, LwpBulletOverride* pBullOver,
LwpIndentOverride* pIndent);
inline void SetFoundry(LwpFoundry* pFoundry);
- inline void SetContinueFlag(sal_Bool bFlag);
- XFContentContainer* AddBulletList(XFContentContainer* pCont, sal_Bool bIsOrdered,
- const OUString& rStyleName, sal_Int16 nLevel, sal_Bool bIsBulletSkiped);
+ inline void SetContinueFlag(bool bFlag);
+ XFContentContainer* AddBulletList(XFContentContainer* pCont, bool bIsOrdered,
+ const OUString& rStyleName, sal_Int16 nLevel, bool bIsBulletSkiped);
inline void SetCurrentPos(sal_uInt16 nNewPos);
inline void SetCurrentSilverBullet(const LwpObjectID& rNewID);
inline LwpObjectID GetCurrentSilverBullet();
@@ -104,8 +104,8 @@ private:
OUString m_aCurrentStyleName;
LwpFoundry* m_pFoundry;
XFList* m_pBulletList;
- sal_Bool m_bContinue;
- sal_Bool m_bIsBulletSkipped;
+ bool m_bContinue;
+ bool m_bIsBulletSkipped;
LwpObjectID m_aCurrentNumberingID;
boost::scoped_ptr<LwpNumberingOverride> m_pCurrentNumOverride;
sal_uInt16 m_nCurrentPos;
@@ -116,7 +116,7 @@ inline void LwpBulletStyleMgr::SetFoundry(LwpFoundry* pFoundry)
{
m_pFoundry = pFoundry;
}
-inline void LwpBulletStyleMgr::SetContinueFlag(sal_Bool bFlag)
+inline void LwpBulletStyleMgr::SetContinueFlag(bool bFlag)
{
m_bContinue = bFlag;
}