connectivity/source/drivers/ado/AColumn.cxx | 2 +- connectivity/source/drivers/ado/ATable.cxx | 2 +- connectivity/source/drivers/ado/Awrapado.cxx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 09c38e8ffdd24862e885810adc610bfc3e51ff6e Author: Lionel Elie Mamane <[email protected]> Date: Fri Nov 2 15:17:37 2012 +0100 connectivity: port ado driver to new OColumn, too Since the ADO driver does not support Catalog&Schema, just leave it empty Change-Id: Iff9a5105e70a7b9a23f24263b0e74b4fc6d91332 diff --git a/connectivity/source/drivers/ado/AColumn.cxx b/connectivity/source/drivers/ado/AColumn.cxx index 7780447..4c4e4f2 100644 --- a/connectivity/source/drivers/ado/AColumn.cxx +++ b/connectivity/source/drivers/ado/AColumn.cxx @@ -57,7 +57,7 @@ void WpADOColumn::Create() } // ------------------------------------------------------------------------- OAdoColumn::OAdoColumn(sal_Bool _bCase,OConnection* _pConnection,_ADOColumn* _pColumn) - : connectivity::sdbcx::OColumn(::rtl::OUString(),::rtl::OUString(),::rtl::OUString(),::rtl::OUString(),0,0,0,0,sal_False,sal_False,sal_False,_bCase) + : connectivity::sdbcx::OColumn(_bCase) ,m_pConnection(_pConnection) { construct(); diff --git a/connectivity/source/drivers/ado/ATable.cxx b/connectivity/source/drivers/ado/ATable.cxx index f2ae573..2b31601 100644 --- a/connectivity/source/drivers/ado/ATable.cxx +++ b/connectivity/source/drivers/ado/ATable.cxx @@ -48,7 +48,7 @@ using namespace com::sun::star::lang; // ------------------------------------------------------------------------- OAdoTable::OAdoTable(sdbcx::OCollection* _pTables,sal_Bool _bCase,OCatalog* _pCatalog,_ADOTable* _pTable) - : OTable_TYPEDEF(_pTables,_bCase,::rtl::OUString(),::rtl::OUString()) + : OTable_TYPEDEF(_pTables,_bCase) ,m_pCatalog(_pCatalog) { construct(); commit b71c8a455689216ed030fa6715a94f29f224f967 Author: Lionel Elie Mamane <[email protected]> Date: Fri Nov 2 15:16:30 2012 +0100 janitorial: spacing Change-Id: If8600f1b3d9346c54ffbba77826ff5ac4f1ed15f diff --git a/connectivity/source/drivers/ado/Awrapado.cxx b/connectivity/source/drivers/ado/Awrapado.cxx index b4eb397..e760874 100644 --- a/connectivity/source/drivers/ado/Awrapado.cxx +++ b/connectivity/source/drivers/ado/Awrapado.cxx @@ -1031,9 +1031,9 @@ sal_Bool WpADOParameter::put_Size(const sal_Int32& _nSize) return (SUCCEEDED(pInterface->put_Size(_nSize))); } - ::rtl::OUString WpADOColumn::get_Name() const +::rtl::OUString WpADOColumn::get_Name() const { - OSL_ENSURE(pInterface,"Interface is null!"); + OSL_ENSURE(pInterface,"Interface is null!"); OLEString aBSTR; pInterface->get_Name(&aBSTR); return aBSTR; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
