diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/stream.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 920b1bf856b8..19dae556192f 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -326,8 +326,8 @@ public: SvStream& WriteDouble( const double& rDouble ); SvStream& WriteCharPtr( const char* pBuf ); - SvStream& WriteNumber( sal_uInt32 nUInt32 ); - SvStream& WriteNumber( sal_Int32 nInt32 ); + SvStream& WriteUInt32AsString( sal_uInt32 nUInt32 ); + SvStream& WriteInt32AsString( sal_Int32 nInt32 ); sal_Size Read( void* pData, sal_Size nSize ); sal_Size Write( const void* pData, sal_Size nSize ); |