diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/core/ucbserv.cxx | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/ucb/source/core/ucbserv.cxx b/ucb/source/core/ucbserv.cxx index 8453933230e7..3485b6abbdd4 100644 --- a/ucb/source/core/ucbserv.cxx +++ b/ucb/source/core/ucbserv.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ucbserv.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: kso $ $Date: 2001-04-06 08:32:14 $ + * last change: $Author: hr $ $Date: 2003-08-07 14:39:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -81,15 +81,11 @@ #ifndef _PROVPROX_HXX #include "provprox.hxx" #endif -#ifndef INCLUDED_UCB_COREREMOTECONTENTBROKER_HXX -#include "coreremotecontentbroker.hxx" -#endif using namespace rtl; using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::registry; -using ucb_core::RemoteContentBroker; //========================================================================= static sal_Bool writeInfo( void * pRegistryKey, @@ -173,16 +169,7 @@ extern "C" sal_Bool SAL_CALL component_writeInfo( writeInfo( pRegistryKey, UcbContentProviderProxyFactory::getImplementationName_Static(), - UcbContentProviderProxyFactory::getSupportedServiceNames_Static() ) && - - ////////////////////////////////////////////////////////////////////// - // Remote Content Broker. - ////////////////////////////////////////////////////////////////////// - // THIS CAN BE REMOVED ONCE THE WEBTOP SERVER HAS A UCB OF ITS OWN: - - writeInfo( pRegistryKey, - RemoteContentBroker::getImplementationName_Static(), - RemoteContentBroker::getSupportedServiceNames_Static() ); + UcbContentProviderProxyFactory::getSupportedServiceNames_Static() ); } //========================================================================= @@ -237,17 +224,6 @@ extern "C" void * SAL_CALL component_getFactory( } ////////////////////////////////////////////////////////////////////// - // Remote Content Broker. - ////////////////////////////////////////////////////////////////////// - // THIS CAN BE REMOVED ONCE THE WEBTOP SERVER HAS A UCB OF ITS OWN: - - else if ( RemoteContentBroker::getImplementationName_Static(). - compareToAscii( pImplName ) == 0 ) - { - xFactory = RemoteContentBroker::createServiceFactory( xSMgr ); - } - - ////////////////////////////////////////////////////////////////////// if ( xFactory.is() ) { |