summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/configuration/ConfigurationTracer.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-07-11 12:35:46 +0000
committerRüdiger Timm <rt@openoffice.org>2008-07-11 12:35:46 +0000
commit4425f0588ecfc6aeffe6a90e795fabb4e4f113e0 (patch)
treef0c084ce853582a959da9c5410e4f3b207b2f6df /sd/source/ui/framework/configuration/ConfigurationTracer.cxx
parentee3db4f9f808189b15d389f048be6c847aa8fe57 (diff)
INTEGRATION: CWS presenterfixes (1.3.30); FILE MERGED
2008/06/13 14:34:22 af 1.3.30.1: #i90258# Improved debug messages.
Diffstat (limited to 'sd/source/ui/framework/configuration/ConfigurationTracer.cxx')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationTracer.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationTracer.cxx b/sd/source/ui/framework/configuration/ConfigurationTracer.cxx
index 1315e5866aeb..c0a0cea02205 100644
--- a/sd/source/ui/framework/configuration/ConfigurationTracer.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationTracer.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ConfigurationTracer.cxx,v $
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
* This file is part of OpenOffice.org.
*
@@ -44,16 +44,16 @@ void ConfigurationTracer::TraceConfiguration (
const char* pMessage)
{
#ifdef DEBUG
- OSL_TRACE("%s at %p {", pMessage, rxConfiguration.get());
+ OSL_TRACE("%s at %p {\n", pMessage, rxConfiguration.get());
if (rxConfiguration.is())
{
TraceBoundResources(rxConfiguration, NULL, 0);
}
else
{
- OSL_TRACE(" empty");
+ OSL_TRACE(" empty\n");
}
- OSL_TRACE("}");
+ OSL_TRACE("}\n");
#else
(void)rxConfiguration;
(void)pMessage;
@@ -77,7 +77,7 @@ void ConfigurationTracer::TraceBoundResources (
::rtl::OUString sLine (aResourceList[nIndex]->getResourceURL());
for (int i=0; i<nIndentation; ++i)
sLine = sIndentation + sLine;
- OSL_TRACE("%s", OUStringToOString(sLine, RTL_TEXTENCODING_UTF8).getStr());
+ OSL_TRACE("%s\n", OUStringToOString(sLine, RTL_TEXTENCODING_UTF8).getStr());
TraceBoundResources(rxConfiguration, aResourceList[nIndex], nIndentation+1);
}
#else