summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/storinfo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/sdstor/storinfo.cxx')
-rw-r--r--sot/source/sdstor/storinfo.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sot/source/sdstor/storinfo.cxx b/sot/source/sdstor/storinfo.cxx
index 74e819e8c596..01a02003601e 100644
--- a/sot/source/sdstor/storinfo.cxx
+++ b/sot/source/sdstor/storinfo.cxx
@@ -72,18 +72,18 @@ void WriteClipboardFormat( SvStream & rStm, sal_uLong nFormat )
{
OString aAsciiCbFmt(OUStringToOString(aCbFmt,
RTL_TEXTENCODING_ASCII_US));
- rStm.WriteInt32( (sal_Int32) (aAsciiCbFmt.getLength() + 1) );
+ rStm.WriteInt32( (aAsciiCbFmt.getLength() + 1) );
rStm.WriteCharPtr( (const char *)aAsciiCbFmt.getStr() );
rStm.WriteUChar( 0 );
}
else if( nFormat )
{
- rStm.WriteInt32( (sal_Int32) -1 ) // for Windows
- .WriteInt32( (sal_Int32) nFormat );
+ rStm.WriteInt32( -1 ) // for Windows
+ .WriteInt32( nFormat );
}
else
{
- rStm.WriteInt32( (sal_Int32) 0 ); // no clipboard format
+ rStm.WriteInt32( 0 ); // no clipboard format
}
}