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 | |
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')
-rw-r--r-- | connectivity/source/drivers/writer/WTable.cxx | 11 | ||||
-rw-r--r-- | connectivity/source/inc/writer/WTable.hxx | 5 |
2 files changed, 5 insertions, 11 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) diff --git a/connectivity/source/inc/writer/WTable.hxx b/connectivity/source/inc/writer/WTable.hxx index 750a66b65df5..744e6c3a8c05 100644 --- a/connectivity/source/inc/writer/WTable.hxx +++ b/connectivity/source/inc/writer/WTable.hxx @@ -77,10 +77,7 @@ private: public: OWriterTable(sdbcx::OCollection* _pTables, OWriterConnection* _pConnection, const OUString& Name, - const OUString& Type, - const OUString& Description = OUString(), - const OUString& SchemaName = OUString(), - const OUString& CatalogName = OUString() + const OUString& Type ); virtual bool fetchRow(OValueRefRow& _rRow, const OSQLColumns& _rCols, bool bRetrieveData) override; |