diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2019-06-04 02:29:43 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-06-04 09:06:43 +0200 |
commit | 32eeb405d7fd6788aaa34e1bf8a04388d7a3958f (patch) | |
tree | 4bcb859baf3d570846228eb522e055879c92e24e /toolkit/source/awt/vclxmenu.cxx | |
parent | bb847b448f8b04e40ba66e7feab42f2b697383b4 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'toolkit/source/awt/vclxmenu.cxx')
-rw-r--r-- | toolkit/source/awt/vclxmenu.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxmenu.cxx b/toolkit/source/awt/vclxmenu.cxx index 716eec4a0105..a757b0a7647e 100644 --- a/toolkit/source/awt/vclxmenu.cxx +++ b/toolkit/source/awt/vclxmenu.cxx @@ -19,7 +19,6 @@ #include <toolkit/awt/vclxmenu.hxx> #include <toolkit/helper/convert.hxx> -#include <toolkit/helper/macros.hxx> #include <toolkit/helper/servicenames.hxx> #include <toolkit/helper/vclunohelper.hxx> @@ -231,7 +230,7 @@ css::uno::Any VCLXMenu::queryInterface( } -IMPL_XUNOTUNNEL( VCLXMenu ) +UNO3_GETIMPLEMENTATION_IMPL( VCLXMenu ); css::uno::Sequence< css::uno::Type > VCLXMenu::getTypes() { @@ -388,7 +387,7 @@ void VCLXMenu::setPopupMenu( SolarMutexGuard aSolarGuard; ::osl::Guard< ::osl::Mutex > aGuard( GetMutex() ); - VCLXMenu* pVCLMenu = VCLXMenu::GetImplementation( rxPopupMenu ); + VCLXMenu* pVCLMenu = VCLXMenu::getImplementation( rxPopupMenu ); DBG_ASSERT( pVCLMenu && pVCLMenu->GetMenu() && pVCLMenu->IsPopupMenu(), "setPopupMenu: Invalid Menu!" ); if ( mpMenu && pVCLMenu && pVCLMenu->GetMenu() && pVCLMenu->IsPopupMenu() ) |