summaryrefslogtreecommitdiff
path: root/dbaccess/source/shared
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-05-22 14:14:22 +0000
committerFrank Schönheit <fs@openoffice.org>2001-05-22 14:14:22 +0000
commit081a9db8f4e030fee5109d9950d128320d7bcd59 (patch)
tree756fcc5789c7926780d1146f497e0463c7ae2532 /dbaccess/source/shared
parentd7541fa8d15f87eab201fc7e4607c7fca04b0539 (diff)
#65293# missing parameter for the FactoryInstantiation
Diffstat (limited to 'dbaccess/source/shared')
-rw-r--r--dbaccess/source/shared/registrationhelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/shared/registrationhelper.cxx b/dbaccess/source/shared/registrationhelper.cxx
index efe4af98177a..d2f48de6a45a 100644
--- a/dbaccess/source/shared/registrationhelper.cxx
+++ b/dbaccess/source/shared/registrationhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: registrationhelper.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: fs $ $Date: 2001-04-03 14:16:03 $
+ * last change: $Author: fs $ $Date: 2001-05-22 15:14:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -234,7 +234,7 @@ Reference< XInterface > OModuleRegistration::getComponentFactory(
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();