summaryrefslogtreecommitdiffstats
path: root/connectivity/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-10 19:00:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-11 09:15:42 +0200
commit2da435922f9c1fcf52eb0c1eb3d6f73581e9f793 (patch)
tree3d6fef2b96557a76b35eeae48f2df10a0a0511c5 /connectivity/source
parenttdf#119316 sfx2 store: no move on macOS (diff)
downloadcore-2da435922f9c1fcf52eb0c1eb3d6f73581e9f793.tar.gz
core-2da435922f9c1fcf52eb0c1eb3d6f73581e9f793.zip
loplugin:constantparam
Change-Id: Ia11bf93768d5f722b7fe62df15f24809cb7e7f04 Reviewed-on: https://gerrit.libreoffice.org/60280 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/commontools/dbtools2.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/connectivity/source/commontools/dbtools2.cxx b/connectivity/source/commontools/dbtools2.cxx
index 535baadb49d1..d17c96d400ee 100644
--- a/connectivity/source/commontools/dbtools2.cxx
+++ b/connectivity/source/commontools/dbtools2.cxx
@@ -375,11 +375,9 @@ OUString createStandardKeyStatement(const Reference< XPropertySet >& descriptor,
}
OUString createSqlCreateTableStatement( const Reference< XPropertySet >& descriptor,
- const Reference< XConnection>& _xConnection,
- ISQLStatementHelper* _pHelper,
- const OUString& _sCreatePattern)
+ const Reference< XConnection>& _xConnection)
{
- OUString aSql = ::dbtools::createStandardCreateStatement(descriptor,_xConnection,_pHelper,_sCreatePattern);
+ OUString aSql = ::dbtools::createStandardCreateStatement(descriptor,_xConnection,nullptr,OUString());
const OUString sKeyStmt = ::dbtools::createStandardKeyStatement(descriptor,_xConnection);
if ( !sKeyStmt.isEmpty() )
aSql += sKeyStmt;