diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-09-25 12:12:51 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-09-25 12:12:51 +0000 |
commit | a0299c247a559e148bf3cc4ef4396b1b4fe6668b (patch) | |
tree | 3997d76505af40692b7f1dd6ea5d9f3b93d6b857 /connectivity/source/drivers/ado/ATables.cxx | |
parent | b93f967ba1a3c5f9de32beb6084352d1bcd73c79 (diff) |
#91719# implementing the XRename handling
Diffstat (limited to 'connectivity/source/drivers/ado/ATables.cxx')
-rw-r--r-- | connectivity/source/drivers/ado/ATables.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/ado/ATables.cxx b/connectivity/source/drivers/ado/ATables.cxx index 8cf847b7668e..0fa9c5ef3793 100644 --- a/connectivity/source/drivers/ado/ATables.cxx +++ b/connectivity/source/drivers/ado/ATables.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ATables.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: oj $ $Date: 2001-05-14 11:40:04 $ + * last change: $Author: oj $ $Date: 2001-09-25 13:12:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -109,7 +109,7 @@ Reference< XNamed > OTables::createObject(const ::rtl::OUString& _rName) ADOTable* pTable = NULL; m_pCollection->get_Item(OLEVariant(_rName),&pTable); - Reference< XNamed > xRet = new OAdoTable(isCaseSensitive(),m_pCatalog,pTable); + Reference< XNamed > xRet = new OAdoTable(this,isCaseSensitive(),m_pCatalog,pTable); return xRet; } @@ -121,7 +121,7 @@ void OTables::impl_refresh( ) throw(RuntimeException) // ------------------------------------------------------------------------- Reference< XPropertySet > OTables::createEmptyObject() { - OAdoTable* pNew = new OAdoTable(isCaseSensitive(),m_pCatalog); + OAdoTable* pNew = new OAdoTable(this,isCaseSensitive(),m_pCatalog); return pNew; } // ------------------------------------------------------------------------- |