summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpsilverbullet.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/lwpsilverbullet.cxx
parentca56379f27c53d4fa015d7adbb9494186f506de6 (diff)
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpsilverbullet.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpsilverbullet.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx
index 91c693612fad..8aad25581ec9 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.cxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx
@@ -120,7 +120,7 @@ void LwpSilverBullet::RegisterStyle()
if (this->IsBulletOrdered() && this->HasName())
{
//todo: find the flag in the file
- sal_Bool bCumulative = sal_False;
+ bool bCumulative = false;
for (sal_uInt8 nPos = 1; nPos < 10; nPos++)
{
@@ -134,7 +134,7 @@ void LwpSilverBullet::RegisterStyle()
{
m_pHideLevels[nPos] = aParaNumbering.nNumLevel;
sal_uInt16 nDisplayLevel = this->GetDisplayLevel(nPos);
- bCumulative = (sal_Bool)(nDisplayLevel > 1);
+ bCumulative = (nDisplayLevel > 1);
OUString aPrefix = this->GetAdditionalName(nPos);
XFNumFmt aFmt;
@@ -327,17 +327,17 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
* @descr:
* @return: sal_True if list is ordered, sal_False if list is unordered.
*/
-sal_Bool LwpSilverBullet::IsBulletOrdered()
+bool LwpSilverBullet::IsBulletOrdered()
{
if (!m_pBulletPara)
- return sal_False;
+ return false;
LwpFribPtr* pFribs = m_pBulletPara->GetFribs();
if (!pFribs)
- return sal_False;
+ return false;
- return (sal_Bool)(pFribs->HasFrib(FRIB_TAG_PARANUMBER) != NULL);
+ return (pFribs->HasFrib(FRIB_TAG_PARANUMBER) != NULL);
}
/**
@@ -375,8 +375,8 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
{
OUString aRet, aEmpty;
sal_uInt16 nHideBit = (1 << nPos);
- sal_Bool bDivisionName = sal_False;
- sal_Bool bSectionName = sal_False;
+ bool bDivisionName = false;
+ bool bSectionName = false;
LwpFrib* pParaFrib = m_pBulletPara->GetFribs()->GetFribs();
if (!pParaFrib)
@@ -400,11 +400,11 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
{
if (nType == 0x000D)
{
- bDivisionName = sal_True;
+ bDivisionName = true;
}
else if (nType == 0x000E)
{
- bSectionName= sal_True;
+ bSectionName= true;
}
}
}
@@ -459,16 +459,16 @@ OUString LwpSilverBullet::GetSectionName()
return pStory->GetSectionName();
}
-sal_Bool LwpSilverBullet::HasName()
+bool LwpSilverBullet::HasName()
{
LwpAtomHolder* pName = this->GetName();
if (pName)
{
- return (sal_Bool)(!pName->str().isEmpty());
+ return (!pName->str().isEmpty());
}
else
{
- return sal_False;
+ return false;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */