Added return statements to a couple of functions that didn't have

them and removed an extra ;

Kent
This commit is contained in:
Kent Mein
2009-02-24 16:51:55 +00:00
parent c2145c67e8
commit d9862517fb
3 changed files with 9 additions and 2 deletions

View File

@@ -256,6 +256,8 @@ static short copy_action_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
return ok;
}
@@ -273,6 +275,8 @@ static short paste_action_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
return ok;
}
/* ------------------- */

View File

@@ -264,8 +264,9 @@ static short copy_graph_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
}
return ok;
}
static short paste_graph_keys (bAnimContext *ac)
{
@@ -281,6 +282,8 @@ static short paste_graph_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
return ok;
}
/* ------------------- */

View File

@@ -1047,7 +1047,7 @@ static void snode_bg_viewmove(SpaceNode *snode)
window_set_cursor(win, oldcursor);
}
#endif;
#endif
/* ********************** size widget operator ******************** */