summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-10-25 13:41:57 +0200
committersb <sb@openoffice.org>2010-10-25 13:41:57 +0200
commitcc065c4937433f944cd7f6e4332f599d5346a5e9 (patch)
tree5f6cab17ee8c04277f9344f0c64dab9a093925fe /configmgr
parent713b57a7b43209b5bab5bacbf5ddf2b524e8dc37 (diff)
sb132: #i112107# getImplementationName should not throw
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/access.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/configmgr/source/access.cxx b/configmgr/source/access.cxx
index eda60e6d612a..3602f3cd73c5 100644
--- a/configmgr/source/access.cxx
+++ b/configmgr/source/access.cxx
@@ -909,11 +909,8 @@ rtl::OUString Access::getImplementationName() throw (css::uno::RuntimeException)
OSL_ASSERT(thisIs(IS_ANY));
osl::MutexGuard g(lock);
checkLocalizedPropertyAccess();
- throw css::uno::RuntimeException(
- rtl::OUString(
- RTL_CONSTASCII_USTRINGPARAM(
- "configmgr Access has no service implementation name")),
- static_cast< cppu::OWeakObject * >(this));
+ return rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM("org.openoffice-configmgr::Access"));
}
sal_Bool Access::supportsService(rtl::OUString const & ServiceName)