From aaa44dc0b07262d2fcae8f6136566baa6c8c169d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 16 May 2019 13:00:03 +0100 Subject: recipients just need OutputDevices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ia4b2fae44a873323444faf558d831b31635a8ee1 Reviewed-on: https://gerrit.libreoffice.org/72411 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- svx/source/accessibility/AccessibleControlShape.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svx/source/accessibility/AccessibleControlShape.cxx b/svx/source/accessibility/AccessibleControlShape.cxx index e570bcb68bce..4721672ee00e 100644 --- a/svx/source/accessibility/AccessibleControlShape.cxx +++ b/svx/source/accessibility/AccessibleControlShape.cxx @@ -146,7 +146,7 @@ AccessibleControlShape::~AccessibleControlShape() } namespace { - Reference< XContainer > lcl_getControlContainer( const vcl::Window* _pWin, const SdrView* _pView ) + Reference< XContainer > lcl_getControlContainer( const OutputDevice* _pWin, const SdrView* _pView ) { Reference< XContainer > xReturn; DBG_ASSERT( _pView, "lcl_getControlContainer: invalid view!" ); @@ -189,7 +189,7 @@ void AccessibleControlShape::Init() // I'm aware of at the moment ..... // get the control which belongs to our model (relative to our view) - const vcl::Window* pViewWindow = maShapeTreeInfo.GetWindow(); + const OutputDevice* pViewWindow = maShapeTreeInfo.GetWindow(); SdrUnoObj* pUnoObjectImpl = dynamic_cast( GetSdrObjectFromXShape(mxShape) ); SdrView* pView = maShapeTreeInfo.GetSdrView(); OSL_ENSURE( pView && pViewWindow && pUnoObjectImpl, "AccessibleControlShape::Init: no view, or no view window, no SdrUnoObj!" ); -- cgit