From 172aedbc51e4bd972bef3f94d562e09ee7bc8355 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 12 Jan 2023 13:48:24 +0200 Subject: XUnoTunnel->dynamic_cast in VCLXDevice Change-Id: I9fa06600d3b9a2172a1818f89a3b9c06d65c8c54 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145467 Tested-by: Jenkins Reviewed-by: Noel Grandin --- starmath/source/unomodel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath') diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx index b7a92567fe25..985c2971f035 100644 --- a/starmath/source/unomodel.cxx +++ b/starmath/source/unomodel.cxx @@ -956,7 +956,7 @@ void SAL_CALL SmModel::render( if (!xRenderDevice.is()) return; - VCLXDevice* pDevice = comphelper::getFromUnoTunnel( xRenderDevice ); + VCLXDevice* pDevice = dynamic_cast( xRenderDevice.get() ); VclPtr< OutputDevice> pOut = pDevice ? pDevice->GetOutputDevice() : VclPtr< OutputDevice >(); if (!pOut) -- cgit