summaryrefslogtreecommitdiff
path: root/sc/source/filter/lotus/lotform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/lotus/lotform.cxx')
-rw-r--r--sc/source/filter/lotus/lotform.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/lotus/lotform.cxx b/sc/source/filter/lotus/lotform.cxx
index 75ea7786c9e6..7bb0f453602b 100644
--- a/sc/source/filter/lotus/lotform.cxx
+++ b/sc/source/filter/lotus/lotform.cxx
@@ -487,7 +487,7 @@ void LotusToSc::Convert( const ScTokenArray*& rpErg, sal_Int32& rRest )
// missing range
nNewId = aPool.Store( rR );
else
- nNewId = aPool.Store( ( sal_uInt16 ) nId );
+ nNewId = aPool.Store( static_cast<sal_uInt16>(nId) );
}
aStack << nNewId;
@@ -514,7 +514,7 @@ void LotusToSc::Convert( const ScTokenArray*& rpErg, sal_Int32& rRest )
// missing range
nNewId = aPool.Store( aCRD );
else
- nNewId = aPool.Store( ( sal_uInt16 ) nId );
+ nNewId = aPool.Store( static_cast<sal_uInt16>(nId) );
}
aStack << nNewId;
@@ -528,7 +528,7 @@ void LotusToSc::Convert( const ScTokenArray*& rpErg, sal_Int32& rRest )
{
sal_Int16 nVal;
Read( nVal );
- aStack << aPool.Store( ( double ) nVal );
+ aStack << aPool.Store( static_cast<double>(nVal) );
}
break;
case FT_ConstString: