summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2010-08-10 20:18:10 +0200
committerDaniel Rentz <dr@openoffice.org>2010-08-10 20:18:10 +0200
commitde0ee2cfcf30e2675fb64e02704a277bedf31545 (patch)
treea5e4e22b9adf98a3f8c1fb8796b1201aa14bf538 /sc
parent47c57a6a16a01121e2c04574652068be4a1acbe2 (diff)
mib18: adjusted service name to match VBA symbol
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbaglobals.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbaglobals.cxx b/sc/source/ui/vba/vbaglobals.cxx
index d1c97ae2291e..c70a7f83726d 100644
--- a/sc/source/ui/vba/vbaglobals.cxx
+++ b/sc/source/ui/vba/vbaglobals.cxx
@@ -238,7 +238,7 @@ ScVbaGlobals::getDebug() throw (uno::RuntimeException)
aArgs[ 0 ] <<= uno::Reference< XHelperInterface >( this );
uno::Reference< lang::XMultiComponentFactory > xServiceManager( mxContext->getServiceManager(), uno::UNO_SET_THROW );
uno::Reference< uno::XInterface > xVBADebug = xServiceManager->createInstanceWithArgumentsAndContext(
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ooo.vba.VbaDebug" ) ), aArgs, mxContext );
+ ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ooo.vba.Debug" ) ), aArgs, mxContext );
return uno::Any( xVBADebug );
}
catch( uno::Exception& )