summaryrefslogtreecommitdiffstats
path: root/include/comphelper
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2019-09-07 00:15:12 +0300
committerArkadiy Illarionov <qarkai@gmail.com>2019-09-07 00:05:26 +0200
commit03747db026a5b4959ec0700d9addf0482e6f5977 (patch)
tree06e20de1f6e7d80f52de021936807c5832f0acc3 /include/comphelper
parentUpdate git submodules (diff)
downloadcore-03747db026a5b4959ec0700d9addf0482e6f5977.tar.gz
core-03747db026a5b4959ec0700d9addf0482e6f5977.zip
tdf#39593 use isUnoTunnelId in connectivity
Change-Id: I458049e23e9fc1855cb4ba9519b9b940f170b024 Reviewed-on: https://gerrit.libreoffice.org/78732 Tested-by: Jenkins Reviewed-by: Arkadiy Illarionov <qarkai@gmail.com>
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx
index 3f9f16707c70..e25c38d80d3c 100644
--- a/include/comphelper/types.hxx
+++ b/include/comphelper/types.hxx
@@ -56,7 +56,7 @@ namespace comphelper
{
css::uno::Reference< css::lang::XUnoTunnel > xTunnel(_rxIFace, css::uno::UNO_QUERY);
if (xTunnel.is())
- return reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelImplementationId()));
+ return reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelId()));
return nullptr;
}