diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-19 09:52:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-19 11:53:24 +0200 |
commit | 1003f9f14d83eac9c08a219fa7d8140550de02c7 (patch) | |
tree | 295e5ee4b46d5a72c14f0b4e2a0214ad78457cfc /dbaccess/source/ui/querydesign | |
parent | fbcd5f074ca3dc105f4fe45b6975c6de2bf60f35 (diff) |
loplugin:referencecasting in dbaccess
Change-Id: If44176f85f460afca92cfa77b3cc1f7107a41690
Reviewed-on: https://gerrit.libreoffice.org/75938
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui/querydesign')
-rw-r--r-- | dbaccess/source/ui/querydesign/querycontroller.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/querydesign/querycontroller.cxx b/dbaccess/source/ui/querydesign/querycontroller.cxx index 3b4840492269..eaeabf30ee86 100644 --- a/dbaccess/source/ui/querydesign/querycontroller.cxx +++ b/dbaccess/source/ui/querydesign/querycontroller.cxx @@ -1162,7 +1162,7 @@ void OQueryController::executeQuery() xDisp->dispatch(aWantToDispatch, aProps); // check the state of the beamer // be notified when the beamer frame is closed - Reference< XComponent > xComponent( getFrame()->findFrame( sFrameName, nSearchFlags ), UNO_QUERY ); + Reference< XComponent > xComponent = getFrame()->findFrame( sFrameName, nSearchFlags ); if (xComponent.is()) { OSL_ENSURE(Reference< XFrame >(xComponent, UNO_QUERY).get() == getContainer()->getPreviewFrame().get(), |