diff options
Diffstat (limited to 'cppcanvas/source/uno')
-rw-r--r-- | cppcanvas/source/uno/uno_mtfrenderer.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppcanvas/source/uno/uno_mtfrenderer.cxx b/cppcanvas/source/uno/uno_mtfrenderer.cxx index 6d2c311510c0..503047f413df 100644 --- a/cppcanvas/source/uno/uno_mtfrenderer.cxx +++ b/cppcanvas/source/uno/uno_mtfrenderer.cxx @@ -11,6 +11,7 @@ #include <cppcanvas/vclfactory.hxx> #include <comphelper/servicedecl.hxx> #include <cppuhelper/factory.hxx> +#include <o3tl/any.hxx> using namespace ::com::sun::star; @@ -34,7 +35,7 @@ void MtfRenderer::draw (double fScaleX, double fScaleY) throw (uno::RuntimeExcep void MtfRenderer::setFastPropertyValue( sal_Int32 nHandle, const uno::Any& aAny) throw (uno::RuntimeException, std::exception) { if (nHandle == 0) { - mpMetafile = reinterpret_cast<GDIMetaFile*>( *static_cast<const sal_Int64*>(aAny.getValue()) ); + mpMetafile = reinterpret_cast<GDIMetaFile*>( *o3tl::doAccess<sal_Int64>(aAny) ); } } |