summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
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;
}
}