summaryrefslogtreecommitdiffstats
path: root/basic/source/runtime/stdobj1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/stdobj1.cxx')
-rw-r--r--basic/source/runtime/stdobj1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/runtime/stdobj1.cxx b/basic/source/runtime/stdobj1.cxx
index 6c464cd0af4f..9060fb318bc5 100644
--- a/basic/source/runtime/stdobj1.cxx
+++ b/basic/source/runtime/stdobj1.cxx
@@ -88,7 +88,7 @@ void SbStdPicture::PropWidth( SbxVariable* pVar, bool bWrite )
aSize = Application::GetAppWindow()->LogicToPixel( aSize, aGraphic.GetPrefMapMode() );
aSize = Application::GetAppWindow()->PixelToLogic( aSize, MapMode( MapUnit::MapTwip ) );
- pVar->PutInteger( (sal_Int16)aSize.Width() );
+ pVar->PutInteger( static_cast<sal_Int16>(aSize.Width()) );
}
void SbStdPicture::PropHeight( SbxVariable* pVar, bool bWrite )
@@ -103,7 +103,7 @@ void SbStdPicture::PropHeight( SbxVariable* pVar, bool bWrite )
aSize = Application::GetAppWindow()->LogicToPixel( aSize, aGraphic.GetPrefMapMode() );
aSize = Application::GetAppWindow()->PixelToLogic( aSize, MapMode( MapUnit::MapTwip ) );
- pVar->PutInteger( (sal_Int16)aSize.Height() );
+ pVar->PutInteger( static_cast<sal_Int16>(aSize.Height()) );
}
@@ -192,9 +192,9 @@ void SbStdFont::PropUnderline( SbxVariable* pVar, bool bWrite )
void SbStdFont::PropSize( SbxVariable* pVar, bool bWrite )
{
if( bWrite )
- SetSize( (sal_uInt16)pVar->GetInteger() );
+ SetSize( static_cast<sal_uInt16>(pVar->GetInteger()) );
else
- pVar->PutInteger( (sal_Int16)GetSize() );
+ pVar->PutInteger( static_cast<sal_Int16>(GetSize()) );
}
void SbStdFont::PropName( SbxVariable* pVar, bool bWrite )