diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-19 20:11:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-20 17:58:43 +0200 |
commit | 476a652361de507303c7298a40cc96fa4bda22a3 (patch) | |
tree | 573ec85eeb6e2604c5cb2f078ea02f848686d443 /sfx2/source/control | |
parent | 254dfda42e2e7bd8be77ccdc702ed7b09a226e57 (diff) |
loplugin:referencecasting in sfx2
Change-Id: I97cd8821aa9a6f462f9b271940483738655ee9cf
Reviewed-on: https://gerrit.libreoffice.org/75979
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/control')
-rw-r--r-- | sfx2/source/control/dispatch.cxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx index 319570787639..26c9b741ee19 100644 --- a/sfx2/source/control/dispatch.cxx +++ b/sfx2/source/control/dispatch.cxx @@ -321,9 +321,8 @@ void SfxDispatcher::Call_Impl(SfxShell& rShell, const SfxSlot &rSlot, SfxRequest if ( GetFrame() ) { // Recording may start - css::uno::Reference< css::frame::XFrame > xFrame( - GetFrame()->GetFrame().GetFrameInterface(), - css::uno::UNO_QUERY); + css::uno::Reference< css::frame::XFrame > xFrame = + GetFrame()->GetFrame().GetFrameInterface(); css::uno::Reference< css::beans::XPropertySet > xSet( xFrame, @@ -766,11 +765,11 @@ void SfxDispatcher::DoDeactivate_Impl(bool bMDI, SfxViewFrame const * pNew) bool bHidePopups = bMDI && xImp->pFrame; if ( pNew && xImp->pFrame ) { - css::uno::Reference< css::frame::XFrame > xOldFrame( - pNew->GetFrame().GetFrameInterface()->getCreator(), css::uno::UNO_QUERY ); + css::uno::Reference< css::frame::XFrame > xOldFrame = + pNew->GetFrame().GetFrameInterface()->getCreator(); - css::uno::Reference< css::frame::XFrame > xMyFrame( - GetFrame()->GetFrame().GetFrameInterface(), css::uno::UNO_QUERY ); + css::uno::Reference< css::frame::XFrame > xMyFrame = + GetFrame()->GetFrame().GetFrameInterface(); if ( xOldFrame == xMyFrame ) bHidePopups = false; |