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>2013-01-09 07:30:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-09 07:30:15 +0400
commite24443b79a23e3d274124f0f666f2632a7073267 (patch)
tree5e3301cba1be70605e14dfa04bb5a9a24daa83fc /source/blender/editors/uvedit
parent73ead0b207ec5b34ada98230487e9b35852fb7d0 (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_smart_stitch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/uvedit/uvedit_smart_stitch.c b/source/blender/editors/uvedit/uvedit_smart_stitch.c
index f969e07384c..b1bb5c85e50 100644
--- a/source/blender/editors/uvedit/uvedit_smart_stitch.c
+++ b/source/blender/editors/uvedit/uvedit_smart_stitch.c
@@ -799,7 +799,7 @@ static void stitch_validate_edge_stichability(UvEdge *edge, StitchState *state,
}
-static void stitch_propagate_uv_final_position (UvElement *element, int index, PreviewPosition *preview_position, UVVertAverage *final_position, StitchState *state, char final, Scene* scene)
+static void stitch_propagate_uv_final_position(UvElement *element, int index, PreviewPosition *preview_position, UVVertAverage *final_position, StitchState *state, char final, Scene *scene)
{
StitchPreviewer *preview = state->stitch_preview;
@@ -1392,7 +1392,7 @@ static void stitch_switch_selection_mode(StitchState *state)
if (state->mode == STITCH_VERT) {
int i;
- state->selection_stack = MEM_mallocN(state->total_separate_edges*sizeof(*state->selection_stack),
+ state->selection_stack = MEM_mallocN(state->total_separate_edges * sizeof(*state->selection_stack),
"stitch_new_edge_selection_stack");
/* check if both elements of an edge are selected */
@@ -1415,7 +1415,7 @@ static void stitch_switch_selection_mode(StitchState *state)
}
else {
int i;
- state->selection_stack = MEM_mallocN(state->total_separate_uvs*sizeof(*state->selection_stack),
+ state->selection_stack = MEM_mallocN(state->total_separate_uvs * sizeof(*state->selection_stack),
"stitch_new_vert_selection_stack");
for (i = 0; i < old_selection_size; i++) {