[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34240] trunk/blender/source/blender/ editors/animation/anim_channels_defines.c: tag unused vars.

Campbell Barton ideasman42 at gmail.com
Tue Jan 11 01:21:44 CET 2011


Revision: 34240
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=34240
Author:   campbellbarton
Date:     2011-01-11 00:21:43 +0000 (Tue, 11 Jan 2011)
Log Message:
-----------
tag unused vars.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_channels_defines.c

Modified: trunk/blender/source/blender/editors/animation/anim_channels_defines.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2011-01-10 23:31:14 UTC (rev 34239)
+++ trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2011-01-11 00:21:43 UTC (rev 34240)
@@ -2408,7 +2408,7 @@
 /* GPencil Datablock ------------------------------------------- */
 
 /* get backdrop color for gpencil datablock widget */
-static void acf_gpd_color(bAnimContext *UNUSED(ac), bAnimListElem *ale, float *color)
+static void acf_gpd_color(bAnimContext *UNUSED(ac), bAnimListElem *UNUSED(ale), float *color)
 {
 	/* highlight only for datablock channels */
 	//if (ale->flag & AGRP_ACTIVE)
@@ -2424,7 +2424,7 @@
 }
 
 /* check if some setting exists for this channel */
-static short acf_gpd_setting_valid(bAnimContext *ac, bAnimListElem *UNUSED(ale), int setting)
+static short acf_gpd_setting_valid(bAnimContext *UNUSED(ac), bAnimListElem *UNUSED(ale), int setting)
 {
 	switch (setting) {
 		/* only select and expand supported */
@@ -2438,7 +2438,7 @@
 }
 
 /* get the appropriate flag(s) for the setting when it is valid  */
-static int acf_gpd_setting_flag(bAnimContext *ac, int setting, short *neg)
+static int acf_gpd_setting_flag(bAnimContext *UNUSED(ac), int setting, short *neg)
 {
 	/* clear extra return data first */
 	*neg= 0;
@@ -2494,7 +2494,7 @@
 }
 
 /* check if some setting exists for this channel */
-static short acf_gpl_setting_valid(bAnimContext *ac, bAnimListElem *ale, int setting)
+static short acf_gpl_setting_valid(bAnimContext *UNUSED(ac), bAnimListElem *UNUSED(ale), int setting)
 {
 	switch (setting) {
 		/* unsupported */




More information about the Bf-blender-cvs mailing list