[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60897] trunk/blender/source/blender/ editors/space_action/action_select.c: Accidentally left in some debug prints in previous commit

Joshua Leung aligorith at gmail.com
Tue Oct 22 13:37:57 CEST 2013


Revision: 60897
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60897
Author:   aligorith
Date:     2013-10-22 11:37:57 +0000 (Tue, 22 Oct 2013)
Log Message:
-----------
Accidentally left in some debug prints in previous commit

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_action/action_select.c

Modified: trunk/blender/source/blender/editors/space_action/action_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_action/action_select.c	2013-10-22 11:36:48 UTC (rev 60896)
+++ trunk/blender/source/blender/editors/space_action/action_select.c	2013-10-22 11:37:57 UTC (rev 60897)
@@ -1037,8 +1037,6 @@
 {
 	KeyframeEditFunc select_cb;
 	
-	printf("select all in channel - %d\n", select_mode);
-	
 	/* get functions for selecting keyframes */
 	select_cb = ANIM_editkeyframes_select(select_mode);
 	
@@ -1071,8 +1069,7 @@
 			BLI_freelistN(&anim_data);
 		}
 		else {
-			int res = ANIM_animchannel_keyframes_loop(NULL, ac->ads, ale, NULL, select_cb, NULL);
-			printf("\tresult = %d\n", res);
+			ANIM_animchannel_keyframes_loop(NULL, ac->ads, ale, NULL, select_cb, NULL);
 		}
 	}
 }
@@ -1204,7 +1201,6 @@
 	/* for replacing selection, firstly need to clear existing selection */
 	if (select_mode == SELECT_REPLACE) {
 		/* reset selection mode for next steps */
-		printf("selectmode = replace\n");
 		select_mode = SELECT_ADD;
 		
 		/* deselect all keyframes */




More information about the Bf-blender-cvs mailing list