summaryrefslogtreecommitdiff
path: root/desktop/source/deployment
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-19 14:03:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-19 14:52:24 +0200
commit2ec1c7a69917ce39850addc49ea3eb8618869aac (patch)
treea61d4a597f6293245e4b85b22552f408c0086091 /desktop/source/deployment
parent0a4e138d3ac3609f2e1465c8a949d07eb89bccf0 (diff)
loplugin:referencecasting in desktop
Change-Id: I9ba4243bc3d6b14e66694728deb270ed74a70d01 Reviewed-on: https://gerrit.libreoffice.org/75949 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/source/deployment')
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
index 3cff34b814ce..e55a7ea717eb 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
@@ -228,9 +228,8 @@ UpdateDialog::Thread::Thread(
{
if( m_context.is() )
{
- m_xInteractionHdl.set(
- task::InteractionHandler::createWithParent(m_context, dialog.getDialog()->GetXWindow()),
- uno::UNO_QUERY );
+ m_xInteractionHdl =
+ task::InteractionHandler::createWithParent(m_context, dialog.getDialog()->GetXWindow());
m_updateInformation->setInteractionHandler( m_xInteractionHdl );
}
}