diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-04-05 08:40:17 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-04-05 08:40:17 +0000 |
commit | b3e0d1c74f8c4d2a271ad597344624f657d533e0 (patch) | |
tree | 4bd1f747e66c5e8e31dd5a9294ead9ccbe57f1b2 /ucb/source | |
parent | 85f179163402b0f56ab5c71670a79a556c811041 (diff) |
#85714# - Prefixed all component implementation names with "com.sun.star.comp"
(UDK naming recommandation - required for automatic testing).
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/webdav/ucpdav.xml | 2 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 6 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/webdavprovider.cxx | 8 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/webdavservices.cxx | 9 |
4 files changed, 15 insertions, 10 deletions
diff --git a/ucb/source/ucp/webdav/ucpdav.xml b/ucb/source/ucp/webdav/ucpdav.xml index 515733cf1b26..75f9889af1a6 100644 --- a/ucb/source/ucp/webdav/ucpdav.xml +++ b/ucb/source/ucp/webdav/ucpdav.xml @@ -11,7 +11,7 @@ Kai Sommerfeld </author> <name> - WebDAVContentProvider + com.sun.star.comp.ucb.WebDAVContentProvider </name> <description> This component implements a Content Provider for the Universal diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index 111cf186c2fe..fcef81b91627 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: webdavcontent.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: kso $ $Date: 2001-04-04 15:26:12 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:40:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -483,7 +483,7 @@ Sequence< Type > SAL_CALL Content::getTypes() OUString SAL_CALL Content::getImplementationName() throw( RuntimeException ) { - return OUString::createFromAscii( "WebDAV_ucp_Content" ); + return OUString::createFromAscii( "com.sun.star.comp.ucb.WebDAVContent" ); } //========================================================================= diff --git a/ucb/source/ucp/webdav/webdavprovider.cxx b/ucb/source/ucp/webdav/webdavprovider.cxx index b51e4c8ce3af..c6d5aed6e103 100644 --- a/ucb/source/ucp/webdav/webdavprovider.cxx +++ b/ucb/source/ucp/webdav/webdavprovider.cxx @@ -2,9 +2,9 @@ * * $RCSfile: webdavprovider.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kso $ $Date: 2001-01-26 16:05:04 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:40:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -138,9 +138,9 @@ XTYPEPROVIDER_IMPL_3( ContentProvider, XSERVICEINFO_IMPL_1( ContentProvider, OUString::createFromAscii( - "webdav_ucp_ContentProvider" ), + "com.sun.star.comp.WebDAVContentProvider" ), OUString::createFromAscii( - WEBDAV_CONTENT_PROVIDER_SERVICE_NAME ) ); + WEBDAV_CONTENT_PROVIDER_SERVICE_NAME ) ); //========================================================================= // diff --git a/ucb/source/ucp/webdav/webdavservices.cxx b/ucb/source/ucp/webdav/webdavservices.cxx index 7237bc1a9347..ddbf924a902d 100644 --- a/ucb/source/ucp/webdav/webdavservices.cxx +++ b/ucb/source/ucp/webdav/webdavservices.cxx @@ -2,9 +2,9 @@ * * $RCSfile: webdavservices.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: kso $ $Date: 2000-10-16 14:55:20 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:40:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -158,6 +158,11 @@ extern "C" void * SAL_CALL component_getFactory( { xFactory = ::webdav_ucp::ContentProvider::createServiceFactory( xSMgr ); } + else if ( rtl_str_compare( pImplName, "webdav_ucp_ContentProvider" ) == 0 ) + { + // Backward compatibility... :-/ + xFactory = ::webdav_ucp::ContentProvider::createServiceFactory( xSMgr ); + } ////////////////////////////////////////////////////////////////////// |