summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-02-26 12:21:14 +0000
committerKurt Zenker <kz@openoffice.org>2004-02-26 12:21:14 +0000
commit7f32c64c8117e4d12dbf234963429792459fe0d6 (patch)
tree405a1efc9a6d00248ebac0ad55bbd723079708ac /tools/source
parentd5ebde33c6c3342ebff424340a2e764f385aa290 (diff)
INTEGRATION: CWS sb13 (1.6.112); FILE MERGED
2004/02/06 08:57:54 sb 1.6.112.1: #i19699# Adapted to tightened tools/string.hxx.
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/stream/strmunx.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx
index aeb302c7a080..1e7ec2536711 100644
--- a/tools/source/stream/strmunx.cxx
+++ b/tools/source/stream/strmunx.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: strmunx.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: vg $ $Date: 2003-04-15 17:56:06 $
+ * last change: $Author: kz $ $Date: 2004-02-26 13:21:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -394,7 +394,7 @@ ULONG SvFileStream::GetData( void* pData, ULONG nSize )
{
#ifdef DBG_UTIL
ByteString aTraceStr( "SvFileStream::GetData(): " );
- aTraceStr += nSize;
+ aTraceStr += ByteString::CreateFromInt64(nSize);
aTraceStr += " Bytes from ";
aTraceStr += ByteString(aFilename, osl_getThreadTextEncoding());
DBG_TRACE( aTraceStr.GetBuffer() );
@@ -424,7 +424,7 @@ ULONG SvFileStream::PutData( const void* pData, ULONG nSize )
{
#ifdef DBG_UTIL
ByteString aTraceStr( "SvFileStrean::PutData: " );
- aTraceStr += nSize;
+ aTraceStr += ByteString::CreateFromInt64(nSize);
aTraceStr += " Bytes to ";
aTraceStr += ByteString(aFilename, osl_getThreadTextEncoding());
DBG_TRACE( aTraceStr.GetBuffer() );