diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-04-05 08:52:01 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-04-05 08:52:01 +0000 |
commit | 57058b4d00e293186b5af9aa43634c0f83be68dd (patch) | |
tree | d8d646fca6a172e41c1da317e8d1431dec13221c /uui | |
parent | b3e0d1c74f8c4d2a271ad597344624f657d533e0 (diff) |
#85714# - Prefixed all component implementation names with "com.sun.star.comp"
(UDK naming recommandation - required for automatic testing).
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl.cxx | 6 | ||||
-rw-r--r-- | uui/source/services.cxx | 9 | ||||
-rw-r--r-- | uui/util/uui.xml | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 67c5d3e85eb8..69829168a788 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: iahndl.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: sb $ $Date: 2000-11-10 10:53:54 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:52:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -205,7 +205,7 @@ void executeCookieDialog(CntHTTPCookieRequest & rRequest); // static sal_Char const UUIInteractionHandler::m_aImplementationName[] - = "UUIInteractionHandler"; + = "com.sun.star.comp.uui.UUIInteractionHandler"; //============================================================================ // virtual diff --git a/uui/source/services.cxx b/uui/source/services.cxx index 98f07784b1f0..a8d28c5bfa80 100644 --- a/uui/source/services.cxx +++ b/uui/source/services.cxx @@ -2,9 +2,9 @@ * * $RCSfile: services.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:04:11 $ + * last change: $Author: kso $ $Date: 2001-04-05 09:52:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -163,9 +163,12 @@ extern "C" void * SAL_CALL component_getFactory(sal_Char const * pImplName, { void * pFactory = 0; if (pServiceManager - && rtl_str_compare(pImplName, + && (rtl_str_compare(pImplName, UUIInteractionHandler::m_aImplementationName) == 0) + || + // Backward compatibility... :-/ + (rtl_str_compare(pImplName, "UUIInteractionHandler") == 0)) { uno::Reference< lang::XSingleServiceFactory > xTheFactory( diff --git a/uui/util/uui.xml b/uui/util/uui.xml index 17902941c426..a61df7583e0c 100644 --- a/uui/util/uui.xml +++ b/uui/util/uui.xml @@ -11,7 +11,7 @@ Stephan Bergmann </author> <name> - UUIInteractionHandler + com.sun.star.comp.uui.UUIInteractionHandler </name> <description> This component implements an Interaction Handler for the UCB. |