summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-07-26 06:42:36 +0000
committerRüdiger Timm <rt@openoffice.org>2006-07-26 06:42:36 +0000
commit5032f0dc1d431bb8a5bbd7e8182e49ca94e618f9 (patch)
treecbd91f384dc04375722d25b16d44187d79284eb5 /svx/source/fmcomp
parent4cbd6ac3ad21b770a3f30f857f0e91f69aec0d9e (diff)
INTEGRATION: CWS dba204b (1.3.464); FILE MERGED
2006/07/17 10:08:13 fs 1.3.464.1: don't depend on ENABLE_RANGE_TRACE
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r--svx/source/fmcomp/trace.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/fmcomp/trace.cxx b/svx/source/fmcomp/trace.cxx
index e0a6e0f4dd48..6e9da9c9894c 100644
--- a/svx/source/fmcomp/trace.cxx
+++ b/svx/source/fmcomp/trace.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: trace.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 22:47:34 $
+ * last change: $Author: rt $ $Date: 2006-07-26 07:42:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -40,7 +40,7 @@
#include <tools/debug.hxx>
#endif
-#if defined(DBG_UTIL) && defined(ENABLE_RANGE_TRACING)
+#if defined(DBG_UTIL)
//==============================================================================
@@ -60,7 +60,7 @@ Tracer::Tracer(const char* _pBlockDescription)
while (nIndent--)
sIndent += '\t';
- ByteString sThread((INT32)::vos::OThread::getCurrentIdentifier());
+ ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
sThread += '\t';
ByteString sMessage(sThread);
@@ -80,7 +80,7 @@ Tracer::~Tracer()
while (nIndent--)
sIndent += '\t';
- ByteString sThread((INT32)::vos::OThread::getCurrentIdentifier());
+ ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
sThread += '\t';
ByteString sMessage(sThread);
@@ -100,7 +100,7 @@ void Tracer::TraceString(const char* _pMessage)
while (nIndent--)
sIndent += '\t';
- ByteString sThread((INT32)::vos::OThread::getCurrentIdentifier());
+ ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
sThread += '\t';
ByteString sMessage(sThread);
@@ -121,7 +121,7 @@ void Tracer::TraceString1StringParam(const char* _pMessage, const char* _pParam)
while (nIndent--)
sIndent += '\t';
- ByteString sThread((INT32)::vos::OThread::getCurrentIdentifier());
+ ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
sThread += '\t';
ByteString sMessage(sThread);