From 03747db026a5b4959ec0700d9addf0482e6f5977 Mon Sep 17 00:00:00 2001 From: Arkadiy Illarionov Date: Sat, 7 Sep 2019 00:15:12 +0300 Subject: tdf#39593 use isUnoTunnelId in connectivity Change-Id: I458049e23e9fc1855cb4ba9519b9b940f170b024 Reviewed-on: https://gerrit.libreoffice.org/78732 Tested-by: Jenkins Reviewed-by: Arkadiy Illarionov --- include/comphelper/types.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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; } -- cgit