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>2012-02-27 18:07:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 18:07:19 +0400
commit130668b12fe2373fe8c4ea6f32ec94fb7dad679d (patch)
tree0eef219e36d1101a5c2f959594b2e3a55ed1acb8 /source/blender/modifiers
parente17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (diff)
minor bmesh api naming edits.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index 63871152af8..1ae25dd699e 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -288,7 +288,7 @@ static DerivedMesh *arrayModifier_doArray(ArrayModifierData *amd,
certainly help by compressing it all into one top-level BMOp that
executes a lot of second-level BMOps. */
BMO_push(em->bm, NULL);
- bmesh_begin_edit(em->bm, 0);
+ bmesh_edit_begin(em->bm, 0);
BMO_op_init(em->bm, &weldop, "weldverts");
BMO_op_initf(em->bm, &op, "dupe geom=%avef");