summaryrefslogtreecommitdiff
path: root/editeng/source/items/frmitems.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/items/frmitems.cxx')
-rw-r--r--editeng/source/items/frmitems.cxx10
1 files changed, 5 insertions, 5 deletions
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;
}
}