From 7a9693fa8ba2132e09a892dfa0e60736b741002a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2015 21:20:03 +1100 Subject: Library API: pass Main struct to unlink functions --- source/blender/editors/object/object_group.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/object/object_group.c') diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c index 3c43f2729bd..76a8a68c42d 100644 --- a/source/blender/editors/object/object_group.c +++ b/source/blender/editors/object/object_group.c @@ -521,12 +521,13 @@ void OBJECT_OT_group_remove(wmOperatorType *ot) static int group_unlink_exec(bContext *C, wmOperator *UNUSED(op)) { + Main *bmain = CTX_data_main(C); Group *group = CTX_data_pointer_get_type(C, "group", &RNA_Group).data; if (!group) return OPERATOR_CANCELLED; - BKE_group_unlink(group); + BKE_group_unlink(bmain, group); WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, NULL); -- cgit v1.2.3