summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authornpower Developer <npower@openoffice.org>2010-03-03 16:47:55 +0000
committernpower Developer <npower@openoffice.org>2010-03-03 16:47:55 +0000
commit466cb4c62238f3e7af9217374cde927c63c15b97 (patch)
treecce9f879e5ce6774a146d934980fbbb3169bc500 /vbahelper
parent30b0e1de36aef1071d2ef978c5650a1bfd340c56 (diff)
npower13_objectmodule: some cleanup
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbaglobalbase.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/vbahelper/source/vbahelper/vbaglobalbase.cxx b/vbahelper/source/vbahelper/vbaglobalbase.cxx
index 9a0c2ea7a0..adb0738a13 100644
--- a/vbahelper/source/vbahelper/vbaglobalbase.cxx
+++ b/vbahelper/source/vbahelper/vbaglobalbase.cxx
@@ -85,14 +85,8 @@ VbaGlobalsBase::createInstanceWithArguments( const ::rtl::OUString& ServiceSpeci
{
uno::Reference< uno::XInterface > xReturn;
- OSL_TRACE("VbaGlobalsBase::createInstanceWithArguments(%s)", rtl::OUStringToOString( ServiceSpecifier, RTL_TEXTENCODING_UTF8 ).getStr() );
if ( hasServiceName( ServiceSpecifier ) )
- {
- OSL_TRACE("VbaGlobalsBase::hasServiceName(%s) - true", rtl::OUStringToOString( ServiceSpecifier, RTL_TEXTENCODING_UTF8 ).getStr() );
xReturn = mxContext->getServiceManager()->createInstanceWithArgumentsAndContext( ServiceSpecifier, Arguments, mxContext );
- }
- else
- OSL_TRACE("VbaGlobalsBase::hasServiceName(%s) - false", rtl::OUStringToOString( ServiceSpecifier, RTL_TEXTENCODING_UTF8 ).getStr() );
return xReturn;
}