Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/object/object_edit.c')
-rw-r--r--source/blender/editors/object/object_edit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c
index 8a8f93a8290..6d5997e4a2a 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -952,13 +952,13 @@ static int clear_parent_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void ED_VIEW3D_OT_clear_parent(wmOperatorType *ot)
+void OBJECT_OT_clear_parent(wmOperatorType *ot)
{
PropertyRNA *prop;
/* identifiers */
ot->name= "Clear parent";
- ot->idname= "ED_VIEW3D_OT_clear_parent";
+ ot->idname= "OBJECT_OT_clear_parent";
/* api callbacks */
ot->invoke= WM_menu_invoke;
@@ -1559,13 +1559,13 @@ static int make_parent_invoke(bContext *C, wmOperator *op, wmEvent *event)
}
-void ED_VIEW3D_OT_make_parent(wmOperatorType *ot)
+void OBJECT_OT_make_parent(wmOperatorType *ot)
{
PropertyRNA *prop;
/* identifiers */
ot->name= "Make parent";
- ot->idname= "ED_VIEW3D_OT_make_parent";
+ ot->idname= "OBJECT_OT_make_parent";
/* api callbacks */
ot->invoke= make_parent_invoke;