summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-24 20:14:01 +0200
committerNoel Grandin <noel@peralex.com>2014-09-26 15:25:39 +0200
commitebdc36c12dbdd8bc2305adabf83c95c666f7b04f (patch)
treee8b398cc54c4fc717333d382e2610ded615b4597 /include
parentded97cfe65ed168e83ecbaf9e94710082b42dffa (diff)
SvStream - rename WriteNumber methods
to Write?Int32AsString. Since the original name was so generic as to be meaningless. Change-Id: Iaaaf592904af51f2b9988fa8efb344c1b2bf9b0f
Diffstat (limited to 'include')
-rw-r--r--include/tools/stream.hxx4
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 );