diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-19 16:50:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-19 16:52:03 +0200 |
commit | e8ff469da51904a2ddafd59b2dcf45539370e08e (patch) | |
tree | bf35796d9eca312ec3f06bbaa67abc70cdc42393 /remotebridges | |
parent | eeaa2ecd1e1f6e0f468854b891de0caa28c470e6 (diff) |
Remove any remaining remnants of unused component_canUnload feature
Change-Id: I635fd006b5ba9f5fb0091748ee2ff9bc3c1a2d2a
Diffstat (limited to 'remotebridges')
-rw-r--r-- | remotebridges/source/unourl_resolver/unourl_resolver.cxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx index 637534d32088..87421f072434 100644 --- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx +++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx @@ -47,7 +47,6 @@ using namespace com::sun::star::registry; namespace unourl_resolver { - rtl_StandardModuleCount g_moduleCount = MODULE_COUNT_INIT; //-------------------------------------------------------------------------------------------------- Sequence< OUString > resolver_getSupportedServiceNames() { @@ -87,14 +86,9 @@ public: ResolverImpl::ResolverImpl( const Reference< XComponentContext > & xCtx ) : _xSMgr( xCtx->getServiceManager() ) , _xCtx( xCtx ) -{ - g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt ); -} +{} //__________________________________________________________________________________________________ -ResolverImpl::~ResolverImpl() -{ - g_moduleCount.modCnt.release( &g_moduleCount.modCnt ); -} +ResolverImpl::~ResolverImpl() {} // XServiceInfo //__________________________________________________________________________________________________ @@ -183,7 +177,7 @@ static struct ImplementationEntry g_entries[] = { ResolverImpl_create, resolver_getImplementationName, resolver_getSupportedServiceNames, createSingleComponentFactory, - &g_moduleCount.modCnt , 0 + 0, 0 }, { 0, 0, 0, 0, 0, 0 } }; |