summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-19 16:04:30 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:22 +0200
commite41ed900a460e6fe797d176b58c1c5269a5f84e1 (patch)
treee7e7e601031cbf24ed7c6848ed0582f21a2d1742 /editeng
parent327dde336ed3a318c08dd19894b0fd84c9a0eb57 (diff)
sal_Bool->bool
Change-Id: I2849ab93619a0a8c9d28b3c43d370ee483820678
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/borderline.cxx4
-rw-r--r--editeng/source/items/frmitems.cxx10
2 files changed, 7 insertions, 7 deletions
diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx
index e80685e33ae7..4a59051ee76f 100644
--- a/editeng/source/items/borderline.cxx
+++ b/editeng/source/items/borderline.cxx
@@ -516,7 +516,7 @@ sal_uInt16 SvxBorderLine::GetDistance() const
// -----------------------------------------------------------------------
-sal_Bool SvxBorderLine::operator==( const SvxBorderLine& rCmp ) const
+bool SvxBorderLine::operator==( const SvxBorderLine& rCmp ) const
{
return ( ( aColor == rCmp.aColor ) &&
( m_nWidth == rCmp.m_nWidth ) &&
@@ -616,7 +616,7 @@ Color SvxBorderLine::GetColorGap( ) const
OUString SvxBorderLine::GetValueString( SfxMapUnit eSrcUnit,
SfxMapUnit eDestUnit,
const IntlWrapper* pIntl,
- sal_Bool bMetricStr) const
+ bool bMetricStr) const
{
static const sal_uInt16 aStyleIds[] =
{
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx
index 7c6de8202872..c70dd1d0b956 100644
--- a/editeng/source/items/frmitems.cxx
+++ b/editeng/source/items/frmitems.cxx
@@ -2154,7 +2154,7 @@ SfxItemPresentation SvxBoxItem::GetPresentation
if( pTop && pBottom && pLeft && pRight &&
*pTop == *pBottom && *pTop == *pLeft && *pTop == *pRight )
{
- rText += pTop->GetValueString( eCoreUnit, ePresUnit, pIntl, sal_True ) + cpDelimTmp;
+ rText += pTop->GetValueString( eCoreUnit, ePresUnit, pIntl, true ) + cpDelimTmp;
}
else
{
@@ -2162,28 +2162,28 @@ SfxItemPresentation SvxBoxItem::GetPresentation
{
rText = rText +
EE_RESSTR(RID_SVXITEMS_BORDER_TOP) +
- pTop->GetValueString( eCoreUnit, ePresUnit, pIntl, sal_True ) +
+ pTop->GetValueString( eCoreUnit, ePresUnit, pIntl, true ) +
cpDelimTmp;
}
if ( pBottom )
{
rText = rText +
EE_RESSTR(RID_SVXITEMS_BORDER_BOTTOM) +
- pBottom->GetValueString( eCoreUnit, ePresUnit, pIntl, sal_True ) +
+ pBottom->GetValueString( eCoreUnit, ePresUnit, pIntl, true ) +
cpDelimTmp;
}
if ( pLeft )
{
rText = rText +
EE_RESSTR(RID_SVXITEMS_BORDER_LEFT) +
- pLeft->GetValueString( eCoreUnit, ePresUnit, pIntl, sal_True ) +
+ pLeft->GetValueString( eCoreUnit, ePresUnit, pIntl, true ) +
cpDelimTmp;
}
if ( pRight )
{
rText = rText +
EE_RESSTR(RID_SVXITEMS_BORDER_RIGHT) +
- pRight->GetValueString( eCoreUnit, ePresUnit, pIntl, sal_True ) +
+ pRight->GetValueString( eCoreUnit, ePresUnit, pIntl, true ) +
cpDelimTmp;
}
}