From 211bee536d1abae52de3ec2e1f419eb021075aae Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 17 Jun 2005 09:07:27 +0000 Subject: INTEGRATION: CWS sb31 (1.13.134); FILE MERGED 2005/04/18 13:07:54 sb 1.13.134.1: #121392# Fixed use of OSL_TRACE. --- stoc/source/loader/dllcomponentloader.cxx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'stoc/source/loader') diff --git a/stoc/source/loader/dllcomponentloader.cxx b/stoc/source/loader/dllcomponentloader.cxx index d11e6711c725..e94176478cb7 100644 --- a/stoc/source/loader/dllcomponentloader.cxx +++ b/stoc/source/loader/dllcomponentloader.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dllcomponentloader.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: vg $ $Date: 2003-04-15 17:13:29 $ + * last change: $Author: obo $ $Date: 2005-06-17 10:07:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,9 +59,6 @@ * ************************************************************************/ -#if OSL_DEBUG_LEVEL > 0 -#include -#endif #include #include #include @@ -313,9 +310,7 @@ OUString DllComponentLoader::expand_url( OUString const & url ) buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(" => ") ); buf.append( ret ); OString str( OUStringToOString( buf.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US ) ); -// OSL_TRACE( str.getStr() ); - // use printf here, because OSL_TRACE forwards to printf directly, so %... gets lost - fprintf( stderr, "%s\n", str.getStr() ); + OSL_TRACE( "%s", str.getStr() ); #endif return ret; } -- cgit