diff options
Diffstat (limited to 'ucb/source/ucp/hierarchy')
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchycontent.cxx | 7 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchyprovider.cxx | 8 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchyservices.cxx | 9 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/ucphier.xml | 2 |
4 files changed, 16 insertions, 10 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchycontent.cxx b/ucb/source/ucp/hierarchy/hierarchycontent.cxx index 22ce9abb100f..0c9181ad7184 100644 --- a/ucb/source/ucp/hierarchy/hierarchycontent.cxx +++ b/ucb/source/ucp/hierarchy/hierarchycontent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: hierarchycontent.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: kso $ $Date: 2001-03-27 14:08:50 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:48:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -343,7 +343,8 @@ Sequence< Type > SAL_CALL HierarchyContent::getTypes() OUString SAL_CALL HierarchyContent::getImplementationName() throw( RuntimeException ) { - return OUString::createFromAscii( "HierarchyContent" ); + return + OUString::createFromAscii( "com.sun.star.comp.ucb.HierarchyContent" ); } //========================================================================= diff --git a/ucb/source/ucp/hierarchy/hierarchyprovider.cxx b/ucb/source/ucp/hierarchy/hierarchyprovider.cxx index fab14ee3d1bb..b852170fb6d9 100644 --- a/ucb/source/ucp/hierarchy/hierarchyprovider.cxx +++ b/ucb/source/ucp/hierarchy/hierarchyprovider.cxx @@ -2,9 +2,9 @@ * * $RCSfile: hierarchyprovider.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kso $ $Date: 2000-12-21 09:31:52 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:48:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -143,9 +143,9 @@ XTYPEPROVIDER_IMPL_4( HierarchyContentProvider, XSERVICEINFO_IMPL_1( HierarchyContentProvider, OUString::createFromAscii( - "HierarchyContentProvider" ), + "com.sun.star.comp.ucb.HierarchyContentProvider" ), OUString::createFromAscii( - HIERARCHY_CONTENT_PROVIDER_SERVICE_NAME ) ); + HIERARCHY_CONTENT_PROVIDER_SERVICE_NAME ) ); //========================================================================= // diff --git a/ucb/source/ucp/hierarchy/hierarchyservices.cxx b/ucb/source/ucp/hierarchy/hierarchyservices.cxx index 7a5ada177810..1809c1fa7800 100644 --- a/ucb/source/ucp/hierarchy/hierarchyservices.cxx +++ b/ucb/source/ucp/hierarchy/hierarchyservices.cxx @@ -2,9 +2,9 @@ * * $RCSfile: hierarchyservices.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: kso $ $Date: 2000-10-16 14:54:18 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:48:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -159,6 +159,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = HierarchyContentProvider::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "HierarchyContentProvider" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = HierarchyContentProvider::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// diff --git a/ucb/source/ucp/hierarchy/ucphier.xml b/ucb/source/ucp/hierarchy/ucphier.xml index c7ecff0d8fe6..adb4e62947a5 100644 --- a/ucb/source/ucp/hierarchy/ucphier.xml +++ b/ucb/source/ucp/hierarchy/ucphier.xml @@ -11,7 +11,7 @@ Kai Sommerfeld </author> <name> - HierarchyContentProvider + com.sun.star.comp.ucb.HierarchyContentProvider </name> <description> This component implements a Content Provider for the Universal |