[Libreoffice-commits] .: cppuhelper/source
Tor Lillqvist
tml at kemper.freedesktop.org
Mon Aug 8 07:46:19 PDT 2011
cppuhelper/source/shlib.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit ef0451016793c4f1312a37d24e5033684e1649ae
Author: Tor Lillqvist <tml at iki.fi>
Date: Mon Aug 8 17:45:13 2011 +0300
Don't bother trying to truncate parts debugging output
Murphy says it's the part that is dropped which will be interesting
one anyway.
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index ec8304d..30c7c1a 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -379,7 +379,7 @@ Reference< XInterface > invokeComponentFactory(
rtl::OString implName(rtl::OUStringToOString(rImplName, RTL_TEXTENCODING_ASCII_US));
rtl::OString envDcp(rtl::OUStringToOString(env.getTypeName(), RTL_TEXTENCODING_ASCII_US));
- fprintf(stderr, "loadSharedLibComponentFactory envDcp: %-12.12s implName: %30.30s modPath: %-15.15s\n", envDcp.getStr(), implName.getStr() + (implName.getLength() > 30 ? implName.getLength() - 30 : 0), modPath.getStr());
+ fprintf(stderr, "invokeComponentFactory envDcp:%s implName:%s modPath:%s\n", envDcp.getStr(), implName.getStr(), modPath.getStr());
}
#endif
More information about the Libreoffice-commits
mailing list