summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpoverride.cxx
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/lwpoverride.cxx
parentca56379f27c53d4fa015d7adbb9494186f506de6 (diff)
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpoverride.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpoverride.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/lotuswordpro/source/filter/lwpoverride.cxx b/lotuswordpro/source/filter/lwpoverride.cxx
index 1f64516901e0..814689a6bda6 100644
--- a/lotuswordpro/source/filter/lwpoverride.cxx
+++ b/lotuswordpro/source/filter/lwpoverride.cxx
@@ -168,7 +168,7 @@ void LwpTextAttributeOverride::Read(LwpObjectStream* pStrm)
pStrm->SkipExtra();
}
-sal_Bool LwpTextAttributeOverride::IsHighlight()
+bool LwpTextAttributeOverride::IsHighlight()
{
return (m_nValues & TAO_HIGHLIGHT);
}
@@ -213,16 +213,16 @@ void LwpBulletOverride::Read(LwpObjectStream * pStrm)
{
if (pStrm->QuickReadBool())
{
- m_bIsNull= sal_False;
+ m_bIsNull= false;
ReadCommon(pStrm);
m_SilverBullet.ReadIndexed(pStrm);
}
else
- m_bIsNull = sal_True;
+ m_bIsNull = true;
pStrm->SkipExtra();
}
-void LwpBulletOverride::OverrideSkip(sal_Bool bOver)
+void LwpBulletOverride::OverrideSkip(bool bOver)
{
if (bOver)
{
@@ -234,7 +234,7 @@ void LwpBulletOverride::OverrideSkip(sal_Bool bOver)
}
}
-void LwpBulletOverride::OverrideRightAligned(sal_Bool bOver)
+void LwpBulletOverride::OverrideRightAligned(bool bOver)
{
if(bOver)
{
@@ -551,7 +551,7 @@ sal_uInt16 LwpIndentOverride::GetRelative()
return RELATIVE_REST;
}
-sal_Bool LwpIndentOverride::IsUseRelative()
+bool LwpIndentOverride::IsUseRelative()
{
return (m_nValues & IO_USE_RELATIVE) != 0;
}
@@ -582,7 +582,7 @@ void LwpIndentOverride::OverrideIndentRest(sal_Int32 val)
m_nOverride |= IO_REST;
}
-void LwpIndentOverride::OverrideUseRelative(sal_Bool use)
+void LwpIndentOverride::OverrideUseRelative(bool use)
{
if (use)
{