summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/scdetect.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-02 11:22:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-15 08:33:29 +0200
commitb3dfb1e807eba91eed35a02d74fe8a917c41ee6f (patch)
tree821c7c364e8550fdba804a45c50524cc9ac83310 /sc/source/ui/unoobj/scdetect.cxx
parent48fedbfb73fb3bb0abd9f5201d6d7ecc6e9ed6ef (diff)
loplugin:checkunusedparams in sc
Change-Id: Ib4572899caeb7bc2dceb2c188ceb306b8ffc9193 Reviewed-on: https://gerrit.libreoffice.org/40629 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj/scdetect.cxx')
-rw-r--r--sc/source/ui/unoobj/scdetect.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/scdetect.cxx b/sc/source/ui/unoobj/scdetect.cxx
index cd3ec9d2a750..8d0148113863 100644
--- a/sc/source/ui/unoobj/scdetect.cxx
+++ b/sc/source/ui/unoobj/scdetect.cxx
@@ -139,7 +139,7 @@ bool detectThisFormat(SvStream& rStr, const sal_uInt16* pSearch)
}
-ScFilterDetect::ScFilterDetect( const uno::Reference<uno::XComponentContext>& /*xContext*/ )
+ScFilterDetect::ScFilterDetect()
{
}
@@ -345,10 +345,10 @@ css::uno::Sequence<OUString> ScFilterDetect::getSupportedServiceNames()
}
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* SAL_CALL
-com_sun_star_comp_calc_FormatDetector_get_implementation(css::uno::XComponentContext* context,
+com_sun_star_comp_calc_FormatDetector_get_implementation(css::uno::XComponentContext* /*context*/,
css::uno::Sequence<css::uno::Any> const &)
{
- return cppu::acquire(new ScFilterDetect(context));
+ return cppu::acquire(new ScFilterDetect);
}