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/bmesh.h
parente17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (diff)
minor bmesh api naming edits.
Diffstat (limited to 'source/blender/bmesh/bmesh.h')
-rw-r--r--source/blender/bmesh/bmesh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/bmesh.h b/source/blender/bmesh/bmesh.h
index 8871b090910..c72f846ed26 100644
--- a/source/blender/bmesh/bmesh.h
+++ b/source/blender/bmesh/bmesh.h
@@ -342,8 +342,8 @@ BMEdge *BM_edge_at_index(BMesh *bm, const int index);
BMFace *BM_face_at_index(BMesh *bm, const int index);
/*start/stop edit*/
-void bmesh_begin_edit(BMesh *bm, int flag);
-void bmesh_end_edit(BMesh *bm, int flag);
+void bmesh_edit_begin(BMesh *bm, int flag);
+void bmesh_edit_end(BMesh *bm, int flag);
#ifdef USE_BMESH_HOLES