summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpcontent.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/lwpcontent.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/lwpcontent.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpcontent.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/lotuswordpro/source/filter/lwpcontent.cxx b/lotuswordpro/source/filter/lwpcontent.cxx
index 4b6e12a8e23c..77ae0d3ad9cb 100644
--- a/lotuswordpro/source/filter/lwpcontent.cxx
+++ b/lotuswordpro/source/filter/lwpcontent.cxx
@@ -130,26 +130,26 @@ LwpVirtualLayout* LwpContent::GetLayout(LwpVirtualLayout* pStartLayout)
return m_LayoutsWithMe.GetLayout(pStartLayout);
}
-sal_Bool LwpContent::HasNonEmbeddedLayouts()
+bool LwpContent::HasNonEmbeddedLayouts()
{
LwpVirtualLayout* pLayout = NULL;
while( (pLayout = GetLayout(pLayout)) )
{
if(!pLayout->NoContentReference())
- return sal_True;
+ return true;
}
- return sal_False;
+ return false;
}
-sal_Bool LwpContent::IsStyleContent()
+bool LwpContent::IsStyleContent()
{
LwpVirtualLayout* pLayout = NULL;
while( (pLayout = GetLayout(pLayout)) )
{
if(pLayout->IsStyleLayout())
- return sal_True;
+ return true;
}
- return sal_False;
+ return false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */