diff options
Diffstat (limited to 'ucb/source/cacher/cacheserv.cxx')
-rw-r--r-- | ucb/source/cacher/cacheserv.cxx | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/ucb/source/cacher/cacheserv.cxx b/ucb/source/cacher/cacheserv.cxx index 0f0574b76937..27dfe0c8c480 100644 --- a/ucb/source/cacher/cacheserv.cxx +++ b/ucb/source/cacher/cacheserv.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cacheserv.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: kso $ $Date: 2000-10-16 14:52:35 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:50:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -191,6 +191,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = CachedContentResultSetFactory::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "CachedContentResultSetFactory" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = CachedContentResultSetFactory::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// // CachedContentResultSetStubFactory. @@ -201,6 +206,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = CachedContentResultSetStubFactory::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "CachedContentResultSetStubFactory" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = CachedContentResultSetStubFactory::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// // CachedDynamicResultSetFactory. @@ -211,6 +221,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = CachedDynamicResultSetFactory::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "CachedDynamicResultSetFactory" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = CachedDynamicResultSetFactory::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// // CachedDynamicResultSetStubFactory. @@ -221,6 +236,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = CachedDynamicResultSetStubFactory::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "CachedDynamicResultSetStubFactory" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = CachedDynamicResultSetStubFactory::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// |