diff options
author | Rüdiger Timm <rt@openoffice.org> | 2001-05-23 06:41:59 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2001-05-23 06:41:59 +0000 |
commit | ea594b30cc3bf77ead3879e57d56ab0eb435bd78 (patch) | |
tree | ed489b5cef23d097543ce01b172f253d4c972f38 /extensions/source/inc | |
parent | 4b76c7b3fc9553db9b842c816163532b2664d33a (diff) |
#65293# createXXXFactory has an additional parameter since UDK300
Diffstat (limited to 'extensions/source/inc')
-rw-r--r-- | extensions/source/inc/componentmodule.cxx | 9 | ||||
-rw-r--r-- | extensions/source/inc/componentmodule.hxx | 10 |
2 files changed, 13 insertions, 6 deletions
diff --git a/extensions/source/inc/componentmodule.cxx b/extensions/source/inc/componentmodule.cxx index e6944396d325..e49bff666769 100644 --- a/extensions/source/inc/componentmodule.cxx +++ b/extensions/source/inc/componentmodule.cxx @@ -2,9 +2,9 @@ * * $RCSfile: componentmodule.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jl $ $Date: 2001-03-23 11:50:19 $ + * last change: $Author: rt $ $Date: 2001-05-23 07:41:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -364,7 +364,7 @@ namespace COMPMOD_NAMESPACE const FactoryInstantiation FactoryInstantiationFunction = reinterpret_cast<const FactoryInstantiation>(*pFactoryFunction); const ComponentInstantiation ComponentInstantiationFunction = reinterpret_cast<const ComponentInstantiation>(*pComponentFunction); - xReturn = FactoryInstantiationFunction( _rxServiceManager, *pImplName, ComponentInstantiationFunction, *pServices); + xReturn = FactoryInstantiationFunction( _rxServiceManager, *pImplName, ComponentInstantiationFunction, *pServices, NULL); if (xReturn.is()) { xReturn->acquire(); @@ -384,6 +384,9 @@ namespace COMPMOD_NAMESPACE /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.2 2001/03/23 11:50:19 jl + * replaced: OSL_ENSHURE->OSL_ENSURE + * * Revision 1.1 2001/02/12 07:06:08 fs * initial checkin - helper class for implementing module-functionality in SFX-less components * diff --git a/extensions/source/inc/componentmodule.hxx b/extensions/source/inc/componentmodule.hxx index 9d596e7c132e..a8815d4229f2 100644 --- a/extensions/source/inc/componentmodule.hxx +++ b/extensions/source/inc/componentmodule.hxx @@ -2,9 +2,9 @@ * * $RCSfile: componentmodule.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: fs $ $Date: 2001-02-12 07:06:08 $ + * last change: $Author: rt $ $Date: 2001-05-23 07:41:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -107,7 +107,8 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rServiceManager, const ::rtl::OUString & _rComponentName, ::cppu::ComponentInstantiation _pCreateFunction, - const ::com::sun::star::uno::Sequence< ::rtl::OUString > & _rServiceNames + const ::com::sun::star::uno::Sequence< ::rtl::OUString > & _rServiceNames, + rtl_ModuleCount* _pModuleCounter ); //========================================================================= @@ -328,6 +329,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.1 2001/02/12 07:06:08 fs + * initial checkin - helper class for implementing module-functionality in SFX-less components + * * * Revision 1.0 30.01.01 15:07:32 fs ************************************************************************/ |