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-03-24 01:25:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-24 01:25:07 +0400
commit88d0918fe2280965d451f68824e173fb2a577c4d (patch)
tree0f95cbef6cb0b89a4f2e63bf2d51e8b2abd08eb5 /source/blender/editors/mesh/mesh_navmesh.c
parentac69593b7fa66b231df11cae122251d31f7f2cdc (diff)
code cleanup: more consistent naming for mesh operator functions.
Diffstat (limited to 'source/blender/editors/mesh/mesh_navmesh.c')
-rw-r--r--source/blender/editors/mesh/mesh_navmesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/mesh_navmesh.c b/source/blender/editors/mesh/mesh_navmesh.c
index 873bd46a21e..2cd15877728 100644
--- a/source/blender/editors/mesh/mesh_navmesh.c
+++ b/source/blender/editors/mesh/mesh_navmesh.c
@@ -422,7 +422,7 @@ static Object* createRepresentation(bContext *C, struct recast_polyMesh *pmesh,
return obedit;
}
-static int create_navmesh_exec(bContext *C, wmOperator *op)
+static int navmesh_create_exec(bContext *C, wmOperator *op)
{
Scene* scene= CTX_data_scene(C);
LinkNode* obs= NULL;
@@ -475,7 +475,7 @@ void MESH_OT_navmesh_make(wmOperatorType *ot)
ot->idname = "MESH_OT_navmesh_make";
/* api callbacks */
- ot->exec = create_navmesh_exec;
+ ot->exec = navmesh_create_exec;
/* flags */
ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO;