From 32eeb405d7fd6788aaa34e1bf8a04388d7a3958f Mon Sep 17 00:00:00 2001 From: Arkadiy Illarionov Date: Tue, 4 Jun 2019 02:29:43 +0300 Subject: tdf#39593 remove IMPL_XUNOTUNNEL* macros Replace with UNO3_GETIMPLEMENTATION* macros. Replace single usage of IMPL_XUNOTUNNEL_MINIMAL with it's body. Change-Id: I7d4ad76399b999ebb2178ecf57edcf6bd2aa6c3e Reviewed-on: https://gerrit.libreoffice.org/73424 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- forms/source/richtext/richtextcontrol.cxx | 2 +- forms/source/solar/component/navbarcontrol.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'forms/source') diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx index 7cc7ed037a39..aa3afe77fd29 100644 --- a/forms/source/richtext/richtextcontrol.cxx +++ b/forms/source/richtext/richtextcontrol.cxx @@ -174,7 +174,7 @@ namespace frm vcl::Window* pParentWin = nullptr; if ( _rParentPeer.is() ) { - VCLXWindow* pParentXWin = VCLXWindow::GetImplementation( _rParentPeer ); + VCLXWindow* pParentXWin = VCLXWindow::getImplementation( _rParentPeer ); if ( pParentXWin ) pParentWin = pParentXWin->GetWindow().get(); DBG_ASSERT( pParentWin, "ORichTextControl::createPeer: could not obtain the VCL-level parent window!" ); diff --git a/forms/source/solar/component/navbarcontrol.cxx b/forms/source/solar/component/navbarcontrol.cxx index 725fe6edc44a..8d50352baa02 100644 --- a/forms/source/solar/component/navbarcontrol.cxx +++ b/forms/source/solar/component/navbarcontrol.cxx @@ -123,7 +123,7 @@ namespace frm vcl::Window* pParentWin = nullptr; if ( _rParentPeer.is() ) { - VCLXWindow* pParentXWin = VCLXWindow::GetImplementation( _rParentPeer ); + VCLXWindow* pParentXWin = VCLXWindow::getImplementation( _rParentPeer ); if ( pParentXWin ) pParentWin = pParentXWin->GetWindow().get(); DBG_ASSERT( pParentWin, "ONavigationBarControl::createPeer: could not obtain the VCL-level parent window!" ); -- cgit