summaryrefslogtreecommitdiff
path: root/tools
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 /tools
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 'tools')
-rw-r--r--tools/source/stream/stream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 1109bd80a611..1a9ee6b28929 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1506,7 +1506,7 @@ void SvStream::RefreshBuffer()
bIoRead = bIoWrite = false;
}
-SvStream& SvStream::WriteNumber(sal_Int32 nInt32)
+SvStream& SvStream::WriteInt32AsString(sal_Int32 nInt32)
{
char buffer[12];
sal_Size nLen = sprintf(buffer, "%" SAL_PRIdINT32, nInt32);
@@ -1514,7 +1514,7 @@ SvStream& SvStream::WriteNumber(sal_Int32 nInt32)
return *this;
}
-SvStream& SvStream::WriteNumber(sal_uInt32 nUInt32)
+SvStream& SvStream::WriteUInt32AsString(sal_uInt32 nUInt32)
{
char buffer[11];
sal_Size nLen = sprintf(buffer, "%" SAL_PRIuUINT32, nUInt32);