summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMark Hung <marklh9@gmail.com>2017-12-15 00:13:49 +0800
committerAron Budea <aron.budea@collabora.com>2017-12-21 17:32:25 +0100
commit6442a8976b4accb53acb902834171ab5f1802d2a (patch)
tree75a6d801d5d30a42036e795b0572ad871617e06e /sd
parent6054c390d136cea5d79b429447e262f61e4a3f19 (diff)
tdf113594: marking gluepoints immediately.
pPV was for the parameter of MarkGluePoint that was removed in ec38966951f2, and was kept somehow and is converted to bool here. Just replace the default boolean value to false ( that means marking instead of unmarking. ) Change-Id: I4c4b9dd368537b7b90cc4effae482a7b8a41eec9 Reviewed-on: https://gerrit.libreoffice.org/46472 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> (cherry picked from commit bf151f0716910b56e3538579f4af7ede8f51bbcf) Reviewed-on: https://gerrit.libreoffice.org/46497 (cherry picked from commit 715d0f32eb36593a4c9e52763b2ceb17ec1283c5) Reviewed-on: https://gerrit.libreoffice.org/46913 Reviewed-by: Aron Budea <aron.budea@collabora.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/func/fuediglu.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/func/fuediglu.cxx b/sd/source/ui/func/fuediglu.cxx
index bdb72cccccc6..daa4a6740ecc 100644
--- a/sd/source/ui/func/fuediglu.cxx
+++ b/sd/source/ui/func/fuediglu.cxx
@@ -141,7 +141,7 @@ bool FuEditGluePoints::MouseButtonDown(const MouseEvent& rMEvt)
if (!rMEvt.IsShift())
mpView->UnmarkAllGluePoints();
- mpView->MarkGluePoint(aVEvt.pObj, aVEvt.nGlueId, aVEvt.pPV);
+ mpView->MarkGluePoint(aVEvt.pObj, aVEvt.nGlueId, false);
SdrHdl* pHdl = mpView->GetGluePointHdl(aVEvt.pObj, aVEvt.nGlueId);
if (pHdl)