[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28641] trunk/blender/source/blender/ makesrna/intern/rna_actuator.c: too many args, build error

Campbell Barton ideasman42 at gmail.com
Fri May 7 09:57:15 CEST 2010


Revision: 28641
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28641
Author:   campbellbarton
Date:     2010-05-07 09:57:15 +0200 (Fri, 07 May 2010)

Log Message:
-----------
too many args, build error

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_actuator.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_actuator.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_actuator.c	2010-05-07 07:54:25 UTC (rev 28640)
+++ trunk/blender/source/blender/makesrna/intern/rna_actuator.c	2010-05-07 07:57:15 UTC (rev 28641)
@@ -749,13 +749,13 @@
 	/* booleans */
 	prop= RNA_def_property(srna, "add", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_IPOADD);
-	RNA_def_property_boolean_funcs(prop, NULL, "rna_IpoActuator_add_set", NULL);
+	RNA_def_property_boolean_funcs(prop, NULL, "rna_IpoActuator_add_set");
 	RNA_def_property_ui_text(prop, "Add", "Ipo is added to the current loc/rot/scale in global or local coordinate according to Local flag");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 
 	prop= RNA_def_property(srna, "force", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_IPOFORCE);
-	RNA_def_property_boolean_funcs(prop, NULL, "rna_IpoActuator_force_set", NULL);
+	RNA_def_property_boolean_funcs(prop, NULL, "rna_IpoActuator_force_set");
 	RNA_def_property_ui_text(prop, "Force", "Apply IPO as a global or local force depending on the local option (dynamic objects only)");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 	





More information about the Bf-blender-cvs mailing list