From ebdc36c12dbdd8bc2305adabf83c95c666f7b04f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 24 Sep 2014 20:14:01 +0200 Subject: SvStream - rename WriteNumber methods to Write?Int32AsString. Since the original name was so generic as to be meaningless. Change-Id: Iaaaf592904af51f2b9988fa8efb344c1b2bf9b0f --- include/tools/stream.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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 ); -- cgit