From bf26509855cf042375c44cbe729cd0e5262bb519 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 22 Oct 2017 00:17:47 +1100 Subject: Manipulator: name remove func's 'unlink_delayed' Name wasn't right since this only unlinks from manipulator maps. --- source/blender/editors/mesh/editmesh_bisect.c | 2 +- source/blender/editors/mesh/editmesh_extrude.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/mesh') diff --git a/source/blender/editors/mesh/editmesh_bisect.c b/source/blender/editors/mesh/editmesh_bisect.c index ca84de74b3d..1937a9f6891 100644 --- a/source/blender/editors/mesh/editmesh_bisect.c +++ b/source/blender/editors/mesh/editmesh_bisect.c @@ -596,7 +596,7 @@ static bool manipulator_mesh_bisect_poll(const bContext *C, wmManipulatorGroupTy { wmOperator *op = WM_operator_last_redo(C); if (op == NULL || !STREQ(op->type->idname, "MESH_OT_bisect")) { - WM_manipulator_group_type_remove_ptr_delayed(wgt); + WM_manipulator_group_type_unlink_delayed_ptr(wgt); return false; } return true; diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c index f6db7a48108..18320ec65f5 100644 --- a/source/blender/editors/mesh/editmesh_extrude.c +++ b/source/blender/editors/mesh/editmesh_extrude.c @@ -1063,7 +1063,7 @@ static bool manipulator_mesh_spin_poll(const bContext *C, wmManipulatorGroupType { wmOperator *op = WM_operator_last_redo(C); if (op == NULL || !STREQ(op->type->idname, "MESH_OT_spin")) { - WM_manipulator_group_type_remove_ptr_delayed(wgt); + WM_manipulator_group_type_unlink_delayed_ptr(wgt); return false; } return true; -- cgit v1.2.3