summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/drtxtob1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/drtxtob1.cxx')
-rw-r--r--sd/source/ui/view/drtxtob1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx
index 16d465cf75f9..0504e883da90 100644
--- a/sd/source/ui/view/drtxtob1.cxx
+++ b/sd/source/ui/view/drtxtob1.cxx
@@ -164,7 +164,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
nUpper -= 100;
nUpper = std::max<long>( nUpper, 0 );
}
- pNewItem->SetUpper( (sal_uInt16) nUpper );
+ pNewItem->SetUpper( static_cast<sal_uInt16>(nUpper) );
long nLower = pNewItem->GetLower();
if( nSlot == SID_PARASPACE_INCREASE )
@@ -174,7 +174,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
nLower -= 100;
nLower = std::max<long>( nLower, 0 );
}
- pNewItem->SetLower( (sal_uInt16) nLower );
+ pNewItem->SetLower( static_cast<sal_uInt16>(nLower) );
SfxItemSet aNewAttrs( aAttr );
aNewAttrs.Put( *pNewItem );
@@ -205,7 +205,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
nUpper -= 100;
nUpper = std::max<long>( nUpper, 0 );
}
- pNewItem->SetUpper( (sal_uInt16) nUpper );
+ pNewItem->SetUpper( static_cast<sal_uInt16>(nUpper) );
long nLower = pNewItem->GetLower();
if( nSlot == SID_PARASPACE_INCREASE )
@@ -215,7 +215,7 @@ void TextObjectBar::Execute( SfxRequest &rReq )
nLower -= 100;
nLower = std::max<long>( nLower, 0 );
}
- pNewItem->SetLower( (sal_uInt16) nLower );
+ pNewItem->SetLower( static_cast<sal_uInt16>(nLower) );
aNewAttrs.Put( *pNewItem );
pNewItem.reset();