summaryrefslogtreecommitdiff
path: root/stoc/source/loader
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-06-17 09:07:27 +0000
committerOliver Bolte <obo@openoffice.org>2005-06-17 09:07:27 +0000
commit211bee536d1abae52de3ec2e1f419eb021075aae (patch)
treefd92bd1f171b41daf66bcde573dca9e49ad8f790 /stoc/source/loader
parent88651e02e05ad4be0ffa1981df859bd7a17c3c55 (diff)
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.
Diffstat (limited to 'stoc/source/loader')
-rw-r--r--stoc/source/loader/dllcomponentloader.cxx11
1 files changed, 3 insertions, 8 deletions
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 <stdio.h>
-#endif
#include <stdlib.h>
#include <osl/file.h>
#include <vector>
@@ -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;
}