summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdmrkv.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-04 10:11:14 +0200
committerNoel Grandin <noel@peralex.com>2016-03-04 11:48:04 +0200
commit1fbc20dad2520862f8142f1cabae169bf1450b87 (patch)
treee27544a940a1d37031224db3b56b7fa88f836c3d /svx/source/svdraw/svdmrkv.cxx
parent9cc8a26fcdd4dbf7d5d65869bf84b824339751ce (diff)
loplugin:unuseddefaultparam in svx
Change-Id: Iacd4ed12c6c5dfdc2f31f85c8c1ce2cee8a8641f
Diffstat (limited to 'svx/source/svdraw/svdmrkv.cxx')
-rw-r--r--svx/source/svdraw/svdmrkv.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx
index b01c62131c4c..1fcd76375f4f 100644
--- a/svx/source/svdraw/svdmrkv.cxx
+++ b/svx/source/svdraw/svdmrkv.cxx
@@ -1338,15 +1338,13 @@ bool SdrMarkView::IsMarkedObjHit(const Point& rPnt, short nTol) const
return bRet;
}
-SdrHdl* SdrMarkView::PickHandle(const Point& rPnt, SdrSearchOptions nOptions) const
+SdrHdl* SdrMarkView::PickHandle(const Point& rPnt) const
{
if (mbSomeObjChgdFlag) { // recalculate handles, if necessary
FlushComeBackTimer();
}
- bool bBack(nOptions & SdrSearchOptions::BACKWARD);
- bool bNext(nOptions & SdrSearchOptions::NEXT);
Point aPt(rPnt);
- return maHdlList.IsHdlListHit(aPt,bBack,bNext);
+ return maHdlList.IsHdlListHit(aPt);
}
bool SdrMarkView::MarkObj(const Point& rPnt, short nTol, bool bToggle, bool bDeep)