From e1019ecb0c2bd79aeda8fa3e969daf3cb3952792 Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Fri, 17 Apr 2015 21:59:29 +0100 Subject: Windows compilation fix in DX canvas. Change-Id: I835b0d073885a452fc1031892ad2e59d8670cfac --- canvas/source/directx/dx_devicehelper.cxx | 6 +++++- canvas/source/directx/dx_devicehelper.hxx | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'canvas') diff --git a/canvas/source/directx/dx_devicehelper.cxx b/canvas/source/directx/dx_devicehelper.cxx index cc824719c3d7..759bb0b70f17 100644 --- a/canvas/source/directx/dx_devicehelper.cxx +++ b/canvas/source/directx/dx_devicehelper.cxx @@ -52,6 +52,10 @@ namespace dxcanvas { } + DeviceHelper::~DeviceHelper() + { + } + void DeviceHelper::init( HDC hdc, OutputDevice* pOutDev, rendering::XGraphicDevice& rDevice ) { @@ -191,7 +195,7 @@ namespace dxcanvas uno::Any DeviceHelper::getDeviceHandle() const { - return uno::makeAny( reinterpret_cast< sal_Int64 >(mpOutDev) ); + return uno::makeAny( reinterpret_cast< sal_Int64 >(mpOutDev.get()) ); } uno::Any DeviceHelper::getSurfaceHandle() const diff --git a/canvas/source/directx/dx_devicehelper.hxx b/canvas/source/directx/dx_devicehelper.hxx index da6091f44567..cdf1e943243e 100644 --- a/canvas/source/directx/dx_devicehelper.hxx +++ b/canvas/source/directx/dx_devicehelper.hxx @@ -28,7 +28,7 @@ #include "dx_bitmap.hxx" #include -#include +#include #include class OutputDevice; @@ -40,6 +40,7 @@ namespace dxcanvas { public: DeviceHelper(); + ~DeviceHelper(); /** Init the device helper -- cgit