diff options
author | Noel Grandin <noel@peralex.com> | 2015-12-23 16:41:52 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-12-24 07:28:28 +0000 |
commit | e3a31fcca771432a38e4c2e7cc4c4c6c1c157ee9 (patch) | |
tree | 0de9af64a417624e779a6080825d50f55e448119 /desktop/source | |
parent | 4dfba3b59021f55957fc486531f8fdc67cc307b0 (diff) |
loplugin:unusedfields
Change-Id: I979592adb978c3757a1e54615021ee424a2e02bf
Reviewed-on: https://gerrit.libreoffice.org/20892
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/deployment/gui/license_dialog.cxx | 3 | ||||
-rw-r--r-- | desktop/source/deployment/gui/license_dialog.hxx | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/desktop/source/deployment/gui/license_dialog.cxx b/desktop/source/deployment/gui/license_dialog.cxx index cc7d3bd4de3f..c0420c43e940 100644 --- a/desktop/source/deployment/gui/license_dialog.cxx +++ b/desktop/source/deployment/gui/license_dialog.cxx @@ -295,8 +295,7 @@ IMPL_LINK_NOARG_TYPED(LicenseDialogImpl, EndReachedHdl, LicenseView&, void) LicenseDialog::LicenseDialog( Sequence<Any> const& args, - Reference<XComponentContext> const& xComponentContext) - : m_xComponentContext(xComponentContext) + Reference<XComponentContext> const& ) { comphelper::unwrapArgs( args, m_parent, m_sExtensionName, m_sLicenseText ); } diff --git a/desktop/source/deployment/gui/license_dialog.hxx b/desktop/source/deployment/gui/license_dialog.hxx index 121153535635..f5646c99e932 100644 --- a/desktop/source/deployment/gui/license_dialog.hxx +++ b/desktop/source/deployment/gui/license_dialog.hxx @@ -31,7 +31,6 @@ namespace dp_gui { class LicenseDialog : public ::cppu::WeakImplHelper<css::ui::dialogs::XExecutableDialog> { - css::uno::Reference<css::uno::XComponentContext> const m_xComponentContext; css::uno::Reference<css::awt::XWindow> /* const */ m_parent; OUString m_sExtensionName; OUString /* const */ m_sLicenseText; |