diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-07 17:16:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-08 08:08:35 +0200 |
commit | a209172669e7a2de6065486e385e4e3007b74bd2 (patch) | |
tree | 4a7e008cf700fb23ecc6e4cd44de1c6a08a9b7e7 /connectivity/source/drivers/writer/WTable.cxx | |
parent | 2675cbf042130f24fe7ea299b85b8f5f4794a667 (diff) |
loplugin:constantparam
Change-Id: Ib92aba17c46a4ada75c2a0630f281759d995f32e
Reviewed-on: https://gerrit.libreoffice.org/40843
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/drivers/writer/WTable.cxx')
-rw-r--r-- | connectivity/source/drivers/writer/WTable.cxx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/connectivity/source/drivers/writer/WTable.cxx b/connectivity/source/drivers/writer/WTable.cxx index c609bb242861..fd759cc88ad9 100644 --- a/connectivity/source/drivers/writer/WTable.cxx +++ b/connectivity/source/drivers/writer/WTable.cxx @@ -173,15 +173,12 @@ void OWriterTable::fillColumns() OWriterTable::OWriterTable(sdbcx::OCollection* _pTables, OWriterConnection* _pConnection, const OUString& Name, - const OUString& Type, - const OUString& Description, - const OUString& SchemaName, - const OUString& CatalogName + const OUString& Type ) : OWriterTable_BASE(_pTables,_pConnection,Name, Type, - Description, - SchemaName, - CatalogName) + OUString()/*Description*/, + OUString()/*SchemaName*/, + OUString()/*CatalogName*/) ,m_pWriterConnection(_pConnection) ,m_nStartCol(0) ,m_nDataCols(0) |