summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-17 16:47:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-21 08:32:39 +0200
commitdefd2cb0255ad9e376ccd18df9a48ed1adae9d1e (patch)
treef1620e0100965549da9c7476e98078e078717003 /svx/source
parentd5ec8bc929d243fbd707b916883d0a192d5bb072 (diff)
loplugin:virtualdead unused param in SdrHdl::onHelpRequest
Change-Id: I3d75755bd6fd7f3168725c53fd8ce571a938fa37 Reviewed-on: https://gerrit.libreoffice.org/81181 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdhdl.cxx2
-rw-r--r--svx/source/svdraw/svdmrkv.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index 69ac684925af..7bbd56293a0d 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -1064,7 +1064,7 @@ void SdrHdl::onMouseEnter(const MouseEvent& /*rMEvt*/)
{
}
-void SdrHdl::onHelpRequest(const HelpEvent& /*rHEvt*/)
+void SdrHdl::onHelpRequest()
{
}
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx
index 0a3f5052d437..c012cc0fb10e 100644
--- a/svx/source/svdraw/svdmrkv.cxx
+++ b/svx/source/svdraw/svdmrkv.cxx
@@ -1449,7 +1449,7 @@ bool SdrMarkView::RequestHelp(const HelpEvent& rHEvt)
SdrHdl* pCurrentHdl = GetHdl(nHdl);
if (pCurrentHdl->mbMouseOver)
{
- pCurrentHdl->onHelpRequest(rHEvt);
+ pCurrentHdl->onHelpRequest();
return true;
}
}