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-09-07 03:50:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-07 03:50:28 +0400
commitaca97317afd7c282d072e927d002fb2571a29a49 (patch)
tree751e4bc81e78512972ccf68c8d558064589ed9fd /source/blender/editors/mesh/editmesh_slide.c
parent0ecbc047e8a540175b00ed967050abb5f7363dbc (diff)
code cleanup: move vertex and face picking functions into meshtools.c
Diffstat (limited to 'source/blender/editors/mesh/editmesh_slide.c')
-rw-r--r--source/blender/editors/mesh/editmesh_slide.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_slide.c b/source/blender/editors/mesh/editmesh_slide.c
index 397f224ef2e..40c1ea7eff2 100644
--- a/source/blender/editors/mesh/editmesh_slide.c
+++ b/source/blender/editors/mesh/editmesh_slide.c
@@ -749,10 +749,13 @@ static int edbm_vertex_slide_exec_ex(bContext *C, wmOperator *op, const int do_u
return OPERATOR_FINISHED;
}
+
+#if 0
static int edbm_vertex_slide_exec(bContext *C, wmOperator *op)
{
return edbm_vertex_slide_exec_ex(C, op, TRUE);
}
+#endif
void MESH_OT_vert_slide(wmOperatorType *ot)
{