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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-25 11:43:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-25 11:43:41 +0300
commit8b6b5341a55541110684e5272f8856559b89337f (patch)
tree110636f37d037400f65f9204fdb18591c5b7e7a2 /source/blender/editors/object/object_add.c
parentd8e6dd705fbf7d98043e8a210bb49d6903792872 (diff)
move object re-linking into a function.
Diffstat (limited to 'source/blender/editors/object/object_add.c')
-rw-r--r--source/blender/editors/object/object_add.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 289a66a1484..f630b05d8f2 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -843,13 +843,6 @@ void OBJECT_OT_delete(wmOperatorType *ot)
/**************************** Copy Utilities ******************************/
-static void copy_object__forwardModifierLinks(void *UNUSED(userData), Object *UNUSED(ob),
- ID **idpoin)
-{
- /* this is copied from ID_NEW; it might be better to have a macro */
- if(*idpoin && (*idpoin)->newid) *idpoin = (*idpoin)->newid;
-}
-
/* after copying objects, copied data should get new pointers */
static void copy_object_set_idnew(bContext *C, int dupflag)
{
@@ -860,21 +853,7 @@ static void copy_object_set_idnew(bContext *C, int dupflag)
/* XXX check object pointers */
CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) {
- relink_constraints(&ob->constraints);
- if (ob->pose){
- bPoseChannel *chan;
- for (chan = ob->pose->chanbase.first; chan; chan=chan->next){
- relink_constraints(&chan->constraints);
- }
- }
- modifiers_foreachIDLink(ob, copy_object__forwardModifierLinks, NULL);
-
- if(ob->adt)
- BKE_relink_animdata(ob->adt);
-
- ID_NEW(ob->parent);
- ID_NEW(ob->proxy);
- ID_NEW(ob->proxy_group);
+ object_relink(ob);
}
CTX_DATA_END;