[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19104] branches/blender2.5/blender/source /blender/editors: Added return statements to a couple of functions that didn't have

Kent Mein mein at cs.umn.edu
Tue Feb 24 17:52:29 CET 2009


Revision: 19104
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19104
Author:   sirdude
Date:     2009-02-24 17:51:55 +0100 (Tue, 24 Feb 2009)

Log Message:
-----------
Added return statements to a couple of functions that didn't have
them and removed an extra ;

Kent

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/editors/space_action/action_edit.c
    branches/blender2.5/blender/source/blender/editors/space_graph/graph_edit.c
    branches/blender2.5/blender/source/blender/editors/space_node/node_edit.c

Modified: branches/blender2.5/blender/source/blender/editors/space_action/action_edit.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_action/action_edit.c	2009-02-24 12:38:56 UTC (rev 19103)
+++ branches/blender2.5/blender/source/blender/editors/space_action/action_edit.c	2009-02-24 16:51:55 UTC (rev 19104)
@@ -256,6 +256,8 @@
 	
 	/* clean up */
 	BLI_freelistN(&anim_data);
+
+	return ok;
 }
 
 
@@ -273,6 +275,8 @@
 	
 	/* clean up */
 	BLI_freelistN(&anim_data);
+
+	return ok;
 }
 
 /* ------------------- */

Modified: branches/blender2.5/blender/source/blender/editors/space_graph/graph_edit.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_graph/graph_edit.c	2009-02-24 12:38:56 UTC (rev 19103)
+++ branches/blender2.5/blender/source/blender/editors/space_graph/graph_edit.c	2009-02-24 16:51:55 UTC (rev 19104)
@@ -264,9 +264,10 @@
 	
 	/* clean up */
 	BLI_freelistN(&anim_data);
+
+	return ok;
 }
 
-
 static short paste_graph_keys (bAnimContext *ac)
 {	
 	ListBase anim_data = {NULL, NULL};
@@ -281,6 +282,8 @@
 	
 	/* clean up */
 	BLI_freelistN(&anim_data);
+
+	return ok;
 }
 
 /* ------------------- */

Modified: branches/blender2.5/blender/source/blender/editors/space_node/node_edit.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_node/node_edit.c	2009-02-24 12:38:56 UTC (rev 19103)
+++ branches/blender2.5/blender/source/blender/editors/space_node/node_edit.c	2009-02-24 16:51:55 UTC (rev 19104)
@@ -1047,7 +1047,7 @@
 	
 	window_set_cursor(win, oldcursor);
 }
-#endif;
+#endif
 
 /* ********************** size widget operator ******************** */
 





More information about the Bf-blender-cvs mailing list