summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fusel.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:00 +0200
commit34100b30c87123fc631d5536158ffb6443258e40 (patch)
tree23b9499ecb0bf819ff11d615bc8a0833d47f2e97 /sd/source/ui/func/fusel.cxx
parent4b603aaa4adde6789099f2fd7e95c11df4116c0c (diff)
loplugin:defaultparams
Change-Id: I5f3b978823ec43519744f49739b9b4ee6ca1e1e9
Diffstat (limited to 'sd/source/ui/func/fusel.cxx')
-rw-r--r--sd/source/ui/func/fusel.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/func/fusel.cxx b/sd/source/ui/func/fusel.cxx
index 61f5b4b8fdc0..077e66e16651 100644
--- a/sd/source/ui/func/fusel.cxx
+++ b/sd/source/ui/func/fusel.cxx
@@ -663,7 +663,7 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
if (bDragWithCopy)
{
- bDragWithCopy = !mpView->IsPresObjSelected(false, true);
+ bDragWithCopy = !mpView->IsPresObjSelected(false);
}
mpView->SetDragWithCopy(bDragWithCopy);
@@ -687,7 +687,7 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
if (pPV->IsObjSelectable(pObj))
{
mpView->UnmarkAllObj();
- mpView->MarkObj(pObj,pPV,false);
+ mpView->MarkObj(pObj,pPV);
return true;
}
}
@@ -867,7 +867,7 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
if (bDragWithCopy)
{
- bDragWithCopy = !mpView->IsPresObjSelected(false, true);
+ bDragWithCopy = !mpView->IsPresObjSelected(false);
}
mpView->SetDragWithCopy(bDragWithCopy);
@@ -1362,7 +1362,7 @@ bool FuSelection::AnimateObj(SdrObject* pObj, const Point& rPos)
{
// Assign verb
mpView->UnmarkAll();
- mpView->MarkObj(pObj, mpView->GetSdrPageView(), false);
+ mpView->MarkObj(pObj, mpView->GetSdrPageView());
pDrViewSh->DoVerb((sal_Int16)pInfo->mnVerb);
bAnimated = true;
}