summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwppara1.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/lwppara1.cxx
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/lwppara1.cxx')
-rw-r--r--lotuswordpro/source/filter/lwppara1.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/lwppara1.cxx b/lotuswordpro/source/filter/lwppara1.cxx
index a8cb05e83bb1..70df2579552a 100644
--- a/lotuswordpro/source/filter/lwppara1.cxx
+++ b/lotuswordpro/source/filter/lwppara1.cxx
@@ -118,7 +118,7 @@ using boost::polymorphic_downcast;
/**
* @short get text of paragraph
*/
-OUString LwpPara::GetContentText(sal_Bool bAllText)
+OUString LwpPara::GetContentText(bool bAllText)
{
// rFont = m_FontID;
if (bAllText)
@@ -472,7 +472,7 @@ void LwpPara::OverrideParaBullet(LwpParaProperty* pProps)
}
else
{
- m_bHasBullet = sal_True;
+ m_bHasBullet = true;
LwpOverride* pBullet= pParaStyle->GetBulletOverride();
SAL_WNODEPRECATED_DECLARATIONS_PUSH
@@ -508,7 +508,7 @@ void LwpPara::OverrideParaBullet(LwpParaProperty* pProps)
m_aSilverBulletID = pBullOver->GetSilverBullet();
if (!m_aSilverBulletID.IsNull())
{
- m_bHasBullet = sal_True;
+ m_bHasBullet = true;
m_pSilverBullet = dynamic_cast<LwpSilverBullet*>(m_aSilverBulletID.obj(VO_SILVERBULLET));
if (m_pSilverBullet)
@@ -617,7 +617,7 @@ LwpTabOverride* LwpPara::GetLocalTabOverride()
* @descr: Determined which para is earlier in position
*
*/
-sal_Bool LwpPara::operator< (LwpPara& Other)
+bool LwpPara::operator< (LwpPara& Other)
{
return m_nOrdinal < Other.GetOrdinal();
}
@@ -626,7 +626,7 @@ sal_Bool LwpPara::operator< (LwpPara& Other)
* @descr: If the two layouts in the same para, compare which layout is earlied according to frib order
*
*/
-sal_Bool LwpPara::ComparePagePosition(LwpVirtualLayout * pPreLayout, LwpVirtualLayout * pNextLayout)
+bool LwpPara::ComparePagePosition(LwpVirtualLayout * pPreLayout, LwpVirtualLayout * pNextLayout)
{
m_Fribs.SetPara(this);
return m_Fribs.ComparePagePosition(pPreLayout, pNextLayout);
@@ -635,13 +635,13 @@ sal_Bool LwpPara::ComparePagePosition(LwpVirtualLayout * pPreLayout, LwpVirtualL
/**
* @short check paragraph in cell or not
*/
-sal_Bool LwpPara::IsInCell()
+bool LwpPara::IsInCell()
{
LwpStory *pStory = GetStory();
LwpVirtualLayout* pLayout = pStory ? pStory->GetLayout(NULL) : NULL;
if(pLayout && pLayout->IsCell())
- return sal_True;
- return sal_False;
+ return true;
+ return false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */