Added return statements to a couple of functions that didn't have
them and removed an extra ; Kent
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/* ------------------- */
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/* ------------------- */
|
||||
|
||||
@@ -1047,7 +1047,7 @@ static void snode_bg_viewmove(SpaceNode *snode)
|
||||
|
||||
window_set_cursor(win, oldcursor);
|
||||
}
|
||||
#endif;
|
||||
#endif
|
||||
|
||||
/* ********************** size widget operator ******************** */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user