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-11-27 13:41:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-27 13:41:08 +0400
commitc00a1b7493822abc62723e16082a908b221c6514 (patch)
treee02dca5c4258515e58c4859a3b2efd6544539c76 /source/blender/bmesh/operators/bmo_utils.c
parenta9855c227e6bfc955a6b2f15e8ee656218c3f916 (diff)
use clearer names for 'single' bmesh operator args & add '%e' to BMO_op_vinitf comments.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_utils.c')
-rw-r--r--source/blender/bmesh/operators/bmo_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_utils.c b/source/blender/bmesh/operators/bmo_utils.c
index c7ab8f62f40..dde3c526c13 100644
--- a/source/blender/bmesh/operators/bmo_utils.c
+++ b/source/blender/bmesh/operators/bmo_utils.c
@@ -711,8 +711,8 @@ void bmo_shortest_path_exec(BMesh *bm, BMOperator *op)
int num_total = 0 /*, num_sels = 0 */, i = 0;
const int type = BMO_slot_int_get(op->slots_in, "type");
- sv = BMO_slot_buffer_get_single(BMO_slot_get(op->slots_in, "startv"));
- ev = BMO_slot_buffer_get_single(BMO_slot_get(op->slots_in, "endv"));
+ sv = BMO_slot_buffer_get_single(BMO_slot_get(op->slots_in, "vert_start"));
+ ev = BMO_slot_buffer_get_single(BMO_slot_get(op->slots_in, "vert_end"));
num_total = BM_mesh_elem_count(bm, BM_VERT);