summaryrefslogtreecommitdiff
path: root/mysqlc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-04 09:30:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-04 11:26:09 +0200
commit469076317d27e545449ea5a5688a468d02558451 (patch)
tree21bca3de53d7ef299c35d57b2d1267e22f7c9c6b /mysqlc
parent8237a77245227e434ce8a988aa164a67850281e2 (diff)
loplugin:unusedfields l10ntools..rsc
Change-Id: I78785eeab436910c9e8733924a7c43fa998ba36f Reviewed-on: https://gerrit.libreoffice.org/39491 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'mysqlc')
-rw-r--r--mysqlc/source/mysqlc_connection.cxx1
-rw-r--r--mysqlc/source/mysqlc_connection.hxx1
2 files changed, 0 insertions, 2 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx
index 42dbe1a65af3..aa6ef46e66b1 100644
--- a/mysqlc/source/mysqlc_connection.cxx
+++ b/mysqlc/source/mysqlc_connection.cxx
@@ -97,7 +97,6 @@ void OConnection::construct(const rtl::OUString& url, const Sequence< PropertyVa
rtl::OUString aDbName;
m_settings.encoding = MysqlCDriver::getDefaultEncoding();
- m_settings.quoteIdentifier.clear();
// parse url. Url has the following format:
// external server: sdbc:mysqlc:[hostname]:[port]/[dbname]
diff --git a/mysqlc/source/mysqlc_connection.hxx b/mysqlc/source/mysqlc_connection.hxx
index 82887251d340..5e62eff048d0 100644
--- a/mysqlc/source/mysqlc_connection.hxx
+++ b/mysqlc/source/mysqlc_connection.hxx
@@ -71,7 +71,6 @@ namespace connectivity
rtl_TextEncoding encoding;
std::unique_ptr<sql::Connection> cppConnection;
rtl::OUString schema;
- rtl::OUString quoteIdentifier;
rtl::OUString connectionURL;
bool readOnly;
};