diff options
author | Eike Rathke <er@openoffice.org> | 2000-10-22 14:33:45 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2000-10-22 14:33:45 +0000 |
commit | 6774db11a16d01895fa773292e599387f231b831 (patch) | |
tree | 33f181b1b6ca96e3d78ee2f0513e21186110e65d /unotools/source/processfactory | |
parent | b5e54c88f7189723e0e2ff56ff61091c17489ec9 (diff) |
SRC610 MUST: ::comphelper::getProcessServiceFactory
Diffstat (limited to 'unotools/source/processfactory')
-rw-r--r-- | unotools/source/processfactory/componentfactory.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/processfactory/componentfactory.cxx b/unotools/source/processfactory/componentfactory.cxx index 98c648d48d12..74af27889805 100644 --- a/unotools/source/processfactory/componentfactory.cxx +++ b/unotools/source/processfactory/componentfactory.cxx @@ -2,9 +2,9 @@ * * $RCSfile: componentfactory.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:03:55 $ + * last change: $Author: er $ $Date: 2000-10-22 15:33:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -60,7 +60,7 @@ ************************************************************************/ #include <unotools/componentfactory.hxx> -#include <unotools/processfactory.hxx> +#include <comphelper/processfactory.hxx> #ifndef _COM_SUN_STAR_LANG_XSINGLESERVICEFACTORY_HPP_ #include <com/sun/star/lang/XSingleServiceFactory.hpp> @@ -102,7 +102,7 @@ Reference< XInterface > getComponentInstance( ) { Reference< XInterface > xI; - Reference< XMultiServiceFactory > xMSF = ::utl::getProcessServiceFactory(); + Reference< XMultiServiceFactory > xMSF = ::comphelper::getProcessServiceFactory(); if ( xMSF.is() ) xI = xMSF->createInstance( rImplementationName ); if( !xI.is() ) |