summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/modulepcr.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2001-05-23 06:41:59 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2001-05-23 06:41:59 +0000
commit1a399306e11e7030803ecbb226fb4995dfa7be6b (patch)
tree5ca7ba9ec870fcc0b4deb181b6ef6dd0125e0824 /extensions/source/propctrlr/modulepcr.cxx
parent496c9ab673f05045e7924bd83aa0a767ed722643 (diff)
#65293# createXXXFactory has an additional parameter since UDK300
Diffstat (limited to 'extensions/source/propctrlr/modulepcr.cxx')
-rw-r--r--extensions/source/propctrlr/modulepcr.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/modulepcr.cxx b/extensions/source/propctrlr/modulepcr.cxx
index b31c6fdf3..82fb71f0a 100644
--- a/extensions/source/propctrlr/modulepcr.cxx
+++ b/extensions/source/propctrlr/modulepcr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: modulepcr.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jl $ $Date: 2001-03-23 11:54:38 $
+ * last change: $Author: rt $ $Date: 2001-05-23 07:40:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -341,7 +341,7 @@ namespace pcr
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();
@@ -361,6 +361,9 @@ namespace pcr
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.2 2001/03/23 11:54:38 jl
+ * replaced: OSL_ENSHURE->OSL_ENSURE
+ *
* Revision 1.1 2001/01/12 11:29:40 fs
* initial checkin - outsourced the form property browser
*