summaryrefslogtreecommitdiffstats
path: root/sc/source/core/tool/autoform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/autoform.cxx')
-rw-r--r--sc/source/core/tool/autoform.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/autoform.cxx b/sc/source/core/tool/autoform.cxx
index 9a18686f3514..087e612ed887 100644
--- a/sc/source/core/tool/autoform.cxx
+++ b/sc/source/core/tool/autoform.cxx
@@ -201,7 +201,7 @@ void ScAfVersions::Write(SvStream& rStream, sal_uInt16 fileVersion)
rStream.WriteUInt16( SfxInt32Item(ATTR_ROTATE_VALUE).GetVersion(fileVersion) );
rStream.WriteUInt16( SvxRotateModeItem(SVX_ROTATE_MODE_STANDARD,0).GetVersion(fileVersion) );
- rStream.WriteUInt16( (sal_uInt16)0 ); // Num-Format
+ rStream.WriteUInt16( 0 ); // Num-Format
}
ScAutoFormatDataField::ScAutoFormatDataField() :
@@ -1091,7 +1091,7 @@ bool ScAutoFormat::Save()
bRet &= (rStream.GetError() == 0);
- rStream.WriteUInt16( (sal_uInt16)(maData.size() - 1) );
+ rStream.WriteUInt16( (maData.size() - 1) );
bRet &= (rStream.GetError() == 0);
MapType::iterator it = maData.begin(), itEnd = maData.end();
if (it != itEnd)