summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/ado/AUsers.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-06-20 06:16:56 +0000
committerOcke Janssen <oj@openoffice.org>2001-06-20 06:16:56 +0000
commit3c2d21f61b652bf14782d7346573cc5a3642549b (patch)
tree1712f41db0c584bffb71f3f08e3ba9b507674f92 /connectivity/source/drivers/ado/AUsers.cxx
parent5bd7a3a403e3470dff6cdb7699effaf01076dd25 (diff)
#88434# implement user access rights
Diffstat (limited to 'connectivity/source/drivers/ado/AUsers.cxx')
-rw-r--r--connectivity/source/drivers/ado/AUsers.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/ado/AUsers.cxx b/connectivity/source/drivers/ado/AUsers.cxx
index c717b2387f..484550afd3 100644
--- a/connectivity/source/drivers/ado/AUsers.cxx
+++ b/connectivity/source/drivers/ado/AUsers.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: AUsers.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: oj $ $Date: 2001-04-12 12:33:30 $
+ * last change: $Author: oj $ $Date: 2001-06-20 07:16:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -90,8 +90,8 @@ typedef connectivity::sdbcx::OCollection OCollection_TYPE;
Reference< XNamed > OUsers::createObject(const ::rtl::OUString& _rName)
{
- OAdoUser* pRet = new OAdoUser(isCaseSensitive(),_rName);
- Reference< XNamed > xRet = pRet;
+ OAdoUser* pRet = new OAdoUser(m_pCatalog,isCaseSensitive(),_rName);
+ Reference< XNamed > xRet = pRet;
return xRet;
}
// -------------------------------------------------------------------------
@@ -102,7 +102,7 @@ void OUsers::impl_refresh() throw(RuntimeException)
// -------------------------------------------------------------------------
Reference< XPropertySet > OUsers::createEmptyObject()
{
- OUserExtend* pNew = new OUserExtend(isCaseSensitive());
+ OUserExtend* pNew = new OUserExtend(m_pCatalog,isCaseSensitive());
return pNew;
}
// -------------------------------------------------------------------------