Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-05-07 11:57:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-05-07 11:57:15 +0400
commitba8b63fbd7a780224c68004664ba0ff156bc01f2 (patch)
tree013d7eb9de71a3599b0ea5a72976379c73682257 /source/blender
parent389e590460527ee497fe6426c48fba234490ff74 (diff)
too many args, build error
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index 9c5476b08d9..5e5ca2cd2b1 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -749,13 +749,13 @@ static void rna_def_ipo_actuator(BlenderRNA *brna)
/* 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);