summaryrefslogtreecommitdiff
path: root/sc/source/ui/drawfunc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-15 14:49:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-16 04:19:15 +0200
commit774f033f86b3728123842321f21b10b400cf6b9a (patch)
treeba0d3ae232913d224c66984085ea40240c7570d9 /sc/source/ui/drawfunc
parent509c91aca5a9e89e9453082486ac7d67f649a7f5 (diff)
loplugin:checkunusedparams in sc(part5)
Change-Id: If969b989ed16e58fba26ae0fec06759da855a5ad Reviewed-on: https://gerrit.libreoffice.org/37646 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/drawfunc')
-rw-r--r--sc/source/ui/drawfunc/graphsh.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/drawfunc/graphsh.cxx b/sc/source/ui/drawfunc/graphsh.cxx
index 41defd63a6fb..7077711154fa 100644
--- a/sc/source/ui/drawfunc/graphsh.cxx
+++ b/sc/source/ui/drawfunc/graphsh.cxx
@@ -153,7 +153,7 @@ void ScGraphicShell::GetExternalEditState( SfxItemSet& rSet )
rSet.DisableItem( SID_EXTERNAL_EDIT );
}
-void ScGraphicShell::ExecuteExternalEdit( SfxRequest& )
+void ScGraphicShell::ExecuteExternalEdit( SAL_UNUSED_PARAMETER SfxRequest& )
{
ScDrawView* pView = GetViewData()->GetScDrawView();
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
@@ -191,7 +191,7 @@ void ScGraphicShell::GetCompressGraphicState( SfxItemSet& rSet )
rSet.DisableItem( SID_COMPRESS_GRAPHIC );
}
-void ScGraphicShell::ExecuteCompressGraphic( SfxRequest& )
+void ScGraphicShell::ExecuteCompressGraphic( SAL_UNUSED_PARAMETER SfxRequest& )
{
ScDrawView* pView = GetViewData()->GetScDrawView();
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
@@ -236,7 +236,7 @@ void ScGraphicShell::GetCropGraphicState( SfxItemSet& rSet )
rSet.DisableItem( SID_OBJECT_CROP );
}
-void ScGraphicShell::ExecuteCropGraphic( SfxRequest& )
+void ScGraphicShell::ExecuteCropGraphic( SAL_UNUSED_PARAMETER SfxRequest& )
{
ScDrawView* pView = GetViewData()->GetScDrawView();
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
@@ -255,7 +255,7 @@ void ScGraphicShell::ExecuteCropGraphic( SfxRequest& )
Invalidate();
}
-void ScGraphicShell::ExecuteSaveGraphic(SfxRequest& /*rReq*/)
+void ScGraphicShell::ExecuteSaveGraphic( SAL_UNUSED_PARAMETER SfxRequest& /*rReq*/)
{
ScDrawView* pView = GetViewData()->GetScDrawView();
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
@@ -291,7 +291,7 @@ void ScGraphicShell::GetSaveGraphicState(SfxItemSet &rSet)
rSet.DisableItem( SID_SAVE_GRAPHIC );
}
-void ScGraphicShell::ExecuteChangePicture(SfxRequest& /*rReq*/)
+void ScGraphicShell::ExecuteChangePicture( SAL_UNUSED_PARAMETER SfxRequest& /*rReq*/)
{
ScDrawView* pView = GetViewData()->GetScDrawView();
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();