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
commitc6e0b48082d2a2516dd0d330c6ea7d346867586c (patch)
treebfcc6611318f008e4258b1a1c8d98d6b5a68e2a9 /configmgr
parent127773eb1aab2495a9e0f20e13ade3c34d564113 (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 eda60e6d61..3602f3cd73 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)