diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-21 16:05:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-22 08:23:47 +0100 |
commit | 4c349c7b2fa422f17354b1db7231ffe4d15d3b44 (patch) | |
tree | b5f2a53da0e59936cfc45fa77ddd08ccce3e519b /toolkit/source | |
parent | d5ae190a6fd483f3d0346ce4abbc4089f5092234 (diff) |
loplugin:unusedfields in toolkit
Change-Id: Ida146892e786aa05cd9b94cd647a1c5849ecc2ce
Reviewed-on: https://gerrit.libreoffice.org/68162
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/awt/vclxtopwindow.cxx | 1 | ||||
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 10 |
2 files changed, 2 insertions, 9 deletions
diff --git a/toolkit/source/awt/vclxtopwindow.cxx b/toolkit/source/awt/vclxtopwindow.cxx index 69330da50fa6..fd78b543768f 100644 --- a/toolkit/source/awt/vclxtopwindow.cxx +++ b/toolkit/source/awt/vclxtopwindow.cxx @@ -159,7 +159,6 @@ void VCLXTopWindow_Base::setMenuBar( const css::uno::Reference< css::awt::XMenuB pSystemWindow->SetMenuBar( static_cast<MenuBar*>( pMenu->GetMenu() )); } } - mxMenuBar = rxMenu; } diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index f956569d0079..55a61ac36307 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -132,8 +132,6 @@ public: std::unique_ptr<UnoPropertyArrayHelper> mpPropHelper; - css::uno::Reference< css::awt::XPointer > - mxPointer; css::uno::Reference< css::accessibility::XAccessibleContext > mxAccessibleContext; css::uno::Reference< css::awt::XGraphics > @@ -1147,12 +1145,8 @@ void VCLXWindow::setPointer( const css::uno::Reference< css::awt::XPointer >& rx SolarMutexGuard aGuard; VCLXPointer* pPointer = VCLXPointer::GetImplementation( rxPointer ); - if ( pPointer ) - { - mpImpl->mxPointer = rxPointer; - if ( GetWindow() ) - GetWindow()->SetPointer( pPointer->GetPointer() ); - } + if ( pPointer && GetWindow() ) + GetWindow()->SetPointer( pPointer->GetPointer() ); } void VCLXWindow::setBackground( sal_Int32 nColor ) |