diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-28 07:28:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-28 10:46:26 +0200 |
commit | a63e17c6c4c8fae0ad8edd86a097a244f27f38bd (patch) | |
tree | 8b74f0a08eded38897e9e99d469244ff837c951e /chart2/source/model/main/GridProperties.cxx | |
parent | 756b2431f0006a01affa7c92c2dede2b11166001 (diff) |
loplugin:checkunusedparams more part3
Change-Id: I621fcf7ceb27238ca86d2299dfb2b8ed03c270fd
Reviewed-on: https://gerrit.libreoffice.org/40509
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/model/main/GridProperties.cxx')
-rw-r--r-- | chart2/source/model/main/GridProperties.cxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/chart2/source/model/main/GridProperties.cxx b/chart2/source/model/main/GridProperties.cxx index 6d17c39c601c..3f27b0d1b0fd 100644 --- a/chart2/source/model/main/GridProperties.cxx +++ b/chart2/source/model/main/GridProperties.cxx @@ -125,12 +125,6 @@ struct StaticGridInfo : public rtl::StaticAggregate< uno::Reference< beans::XPro namespace chart { -GridProperties::GridProperties( Reference< uno::XComponentContext > const & /* xContext */ ) : - ::property::OPropertySet( m_aMutex ), - m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()) -{ -} - GridProperties::GridProperties() : ::property::OPropertySet( m_aMutex ), m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()) @@ -246,10 +240,10 @@ IMPLEMENT_FORWARD_XTYPEPROVIDER2( GridProperties, GridProperties_Base, ::propert } // namespace chart extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL -com_sun_star_comp_chart2_GridProperties_get_implementation(css::uno::XComponentContext *context, +com_sun_star_comp_chart2_GridProperties_get_implementation(css::uno::XComponentContext *, css::uno::Sequence<css::uno::Any> const &) { - return cppu::acquire(new ::chart::GridProperties(context)); + return cppu::acquire(new ::chart::GridProperties); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |