code cleanup: tag unused vars

This commit is contained in:
Campbell Barton 2012-05-01 18:57:32 +00:00
parent 933b3166fc
commit 657e62c912
3 changed files with 2 additions and 3 deletions

@ -38,4 +38,3 @@ for poly in me.polygons:
for loop_index in range(poly.loop_start, poly.loop_start + poly.loop_total): for loop_index in range(poly.loop_start, poly.loop_start + poly.loop_total):
print(" Vertex: %d" % me.loops[loop_index].vertex_index) print(" Vertex: %d" % me.loops[loop_index].vertex_index)
print(" UV: %r" % uv_layer[loop_index].uv) print(" UV: %r" % uv_layer[loop_index].uv)

@ -198,7 +198,7 @@ void ED_pose_recalculate_paths(Scene *scene, Object *ob)
} }
/* show popup to determine settings */ /* show popup to determine settings */
static int pose_calculate_paths_invoke(bContext *C, wmOperator *op, wmEvent *evt) static int pose_calculate_paths_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event))
{ {
Object *ob = object_pose_armature_get(CTX_data_active_object(C)); Object *ob = object_pose_armature_get(CTX_data_active_object(C));

@ -1126,7 +1126,7 @@ void ED_objects_recalculate_paths(bContext *C, Scene *scene)
} }
/* show popup to determine settings */ /* show popup to determine settings */
static int object_calculate_paths_invoke(bContext *C, wmOperator *op, wmEvent *evt) static int object_calculate_paths_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event))
{ {
Object *ob = CTX_data_active_object(C); Object *ob = CTX_data_active_object(C);