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>2013-12-26 01:26:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-26 01:27:08 +0400
commita5606fadbb32b69a1262cb80a8aa2a60189f4232 (patch)
tree00af93cddb3ae52456ac3d475cc4d15ecf794c5a /source/blender/modifiers/intern/MOD_weightvgproximity.c
parent07ebe893643c433d3fa09d120f780ef14b88f4b3 (diff)
Code Cleanup: remove object arg to CDDM_from_mesh mesh_create_derived
Diffstat (limited to 'source/blender/modifiers/intern/MOD_weightvgproximity.c')
-rw-r--r--source/blender/modifiers/intern/MOD_weightvgproximity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_weightvgproximity.c b/source/blender/modifiers/intern/MOD_weightvgproximity.c
index 06f4664c11b..ecb99974472 100644
--- a/source/blender/modifiers/intern/MOD_weightvgproximity.c
+++ b/source/blender/modifiers/intern/MOD_weightvgproximity.c
@@ -473,7 +473,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, DerivedMesh *der
if (me->edit_btmesh)
target_dm = CDDM_from_editbmesh(me->edit_btmesh, FALSE, FALSE);
else
- target_dm = CDDM_from_mesh(me, obr);
+ target_dm = CDDM_from_mesh(me);
}
free_target_dm = TRUE;
}