diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:23:05 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:23:05 +0000 |
commit | ef73a673bd64b7e96bc8b4471c508d425a4542a6 (patch) | |
tree | cf4564575a7cffca40ab7fef133bab406423e545 /svx | |
parent | 17e80835b75e2973ab15919d82437a9af4bd70dd (diff) |
INTEGRATION: CWS recovery04 (1.9.218); FILE MERGED
2004/10/15 01:40:17 hro 1.9.218.2: RESYNC: (1.9-1.10); FILE MERGED
2004/08/02 11:00:34 as 1.9.218.1: #27726# new recovery UI service
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoctabl.cxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoctabl.cxx b/svx/source/unodraw/unoctabl.cxx index 2edfb93770cf..91a86b54adf4 100644 --- a/svx/source/unodraw/unoctabl.cxx +++ b/svx/source/unodraw/unoctabl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoctabl.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: kz $ $Date: 2004-08-31 14:55:05 $ + * last change: $Author: rt $ $Date: 2004-11-26 14:23:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,6 +74,7 @@ #include "xtable.hxx" #include "unoshcol.hxx" +#include "recoveryui.hxx" using namespace ::com::sun::star; using namespace ::rtl; @@ -315,6 +316,7 @@ sal_Bool SAL_CALL component_writeInfo( void * pServiceManager, void * pRegistryK writeInfo( pKey, SvxShapeCollection::getImplementationName_Static(), SvxShapeCollection::getSupportedServiceNames_Static() ); writeInfo( pKey, SvxUnoColorTable::getImplementationName_Static(), SvxUnoColorTable::getSupportedServiceNames_Static() ); writeInfo( pKey, EnhancedCustomShapeEngine_getImplementationName(), EnhancedCustomShapeEngine_getSupportedServiceNames() ); + writeInfo( pKey, svx::RecoveryUI::st_getImplementationName(), svx::RecoveryUI::st_getSupportedServiceNames() ); #ifndef SVX_LIGHT writeInfo( pKey, svx::GraphicExporter_getImplementationName(), svx::GraphicExporter_getSupportedServiceNames() ); #endif @@ -357,6 +359,13 @@ void * SAL_CALL component_getFactory( const sal_Char * pImplName, void * pServic SvxShapeCollection_createInstance, SvxShapeCollection::getSupportedServiceNames_Static() ); } + else if( svx::RecoveryUI::st_getImplementationName().equalsAscii( pImplName ) ) + { + xFactory = ::cppu::createSingleFactory( reinterpret_cast< lang::XMultiServiceFactory * >( pServiceManager ), + svx::RecoveryUI::st_getImplementationName(), + svx::RecoveryUI::st_createInstance, + svx::RecoveryUI::st_getSupportedServiceNames() ); + } #ifndef SVX_LIGHT else if( svx::GraphicExporter_getImplementationName().equalsAscii( pImplName ) ) { |