diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-19 09:51:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-19 13:28:41 +0200 |
commit | 242e1c42d975b2d8729cd150cf104b177033760a (patch) | |
tree | a44512de3ad3cb5a59cf3b658752dfe154ba5aa0 /connectivity/source/drivers/mysql_jdbc | |
parent | ee2bb231036b1d9d954dec369855948e6ea1f53a (diff) |
loplugin:referencecasting in comphelper..connectivity
Change-Id: I21896885c29e9ab58ebab17b59f1480c6a06fb38
Reviewed-on: https://gerrit.libreoffice.org/75936
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/drivers/mysql_jdbc')
-rw-r--r-- | connectivity/source/drivers/mysql_jdbc/YDriver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/mysql_jdbc/YDriver.cxx b/connectivity/source/drivers/mysql_jdbc/YDriver.cxx index 0d53ebe0d986..233313f6bd7d 100644 --- a/connectivity/source/drivers/mysql_jdbc/YDriver.cxx +++ b/connectivity/source/drivers/mysql_jdbc/YDriver.cxx @@ -354,7 +354,7 @@ ODriverDelegator::getDataDefinitionByConnection(const Reference<XConnection>& co }); if (i != m_aConnections.end()) { - xTab.set(i->second.first.get().get(), UNO_QUERY); + xTab.set(i->second.first.get(), UNO_QUERY); if (!xTab.is()) { xTab = new OMySQLCatalog(connection); @@ -373,7 +373,7 @@ ODriverDelegator::getDataDefinitionByConnection(const Reference<XConnection>& co }); if (i != m_aConnections.end()) { - xTab.set(i->second.first.get().get(), UNO_QUERY); + xTab.set(i->second.first.get(), UNO_QUERY); if (!xTab.is()) { xTab = new OMySQLCatalog(connection); |