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/bmesh/intern/bmesh_operators.c
parente17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (diff)
minor bmesh api naming edits.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index c83ffca2754..c2054a52afc 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -176,11 +176,11 @@ void BMO_op_exec(BMesh *bm, BMOperator *op)
BMO_push(bm, op);
if (bm->stackdepth == 2)
- bmesh_begin_edit(bm, op->flag);
+ bmesh_edit_begin(bm, op->flag);
op->exec(bm, op);
if (bm->stackdepth == 2)
- bmesh_end_edit(bm, op->flag);
+ bmesh_edit_end(bm, op->flag);
BMO_pop(bm);
}