summaryrefslogtreecommitdiff
path: root/filter/source/msfilter/msdffimp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-06 14:38:36 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:24 +0200
commitd1bffe3596d21f205cb7a2697bb5142f190b5627 (patch)
treed0e8e310bb9574fac992118739019c8c30c5b185 /filter/source/msfilter/msdffimp.cxx
parent53c91a6db1cdaf3a91fba6ea328acdcc33c4088a (diff)
svx: sal_Bool->bool
Change-Id: I64d9c1bbe6ed85108783bf6a97329fcdc167ca62
Diffstat (limited to 'filter/source/msfilter/msdffimp.cxx')
-rw-r--r--filter/source/msfilter/msdffimp.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index ccf0dffcb72b..079a165ae9fb 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -5116,7 +5116,7 @@ SdrObject* SvxMSDffManager::ProcessObj(SvStream& rSt,
bool bFitText = false;
if (GetPropertyValue(DFF_Prop_FitTextToShape) & 2)
{
- aSet.Put( SdrTextAutoGrowHeightItem( sal_True ) );
+ aSet.Put( SdrTextAutoGrowHeightItem( true ) );
aSet.Put( SdrTextMinFrameHeightItem(
aNewRect.Bottom() - aNewRect.Top() ) );
aSet.Put( SdrTextMinFrameWidthItem(
@@ -5125,15 +5125,15 @@ SdrObject* SvxMSDffManager::ProcessObj(SvStream& rSt,
}
else
{
- aSet.Put( SdrTextAutoGrowHeightItem( sal_False ) );
- aSet.Put( SdrTextAutoGrowWidthItem( sal_False ) );
+ aSet.Put( SdrTextAutoGrowHeightItem( false ) );
+ aSet.Put( SdrTextAutoGrowWidthItem( false ) );
}
switch ( (MSO_WrapMode)
GetPropertyValue( DFF_Prop_WrapText, mso_wrapSquare ) )
{
case mso_wrapNone :
- aSet.Put( SdrTextAutoGrowWidthItem( sal_True ) );
+ aSet.Put( SdrTextAutoGrowWidthItem( true ) );
if (bFitText)
{
//can't do autowidth in flys #i107184#
@@ -5141,7 +5141,7 @@ SdrObject* SvxMSDffManager::ProcessObj(SvStream& rSt,
}
break;
case mso_wrapByPoints :
- aSet.Put( SdrTextContourFrameItem( sal_True ) );
+ aSet.Put( SdrTextContourFrameItem( true ) );
break;
default: break;
}