diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2019-09-07 00:15:12 +0300 |
---|---|---|
committer | Arkadiy Illarionov <qarkai@gmail.com> | 2019-09-07 00:05:26 +0200 |
commit | 03747db026a5b4959ec0700d9addf0482e6f5977 (patch) | |
tree | 06e20de1f6e7d80f52de021936807c5832f0acc3 /include | |
parent | 6c5a9db12e34cdf9d55312711b5a1d63c5ff812d (diff) |
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')
-rw-r--r-- | include/comphelper/types.hxx | 2 |
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; } |