[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40418] trunk/blender/source/blender/ makesrna/intern/rna_action.c: fix breakage in 40417 - test compile please even for doc changes.

Campbell Barton ideasman42 at gmail.com
Wed Sep 21 10:35:07 CEST 2011


Revision: 40418
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40418
Author:   campbellbarton
Date:     2011-09-21 08:35:07 +0000 (Wed, 21 Sep 2011)
Log Message:
-----------
fix breakage in 40417 - test compile please even for doc changes.

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-09-21 08:02:26 UTC (rev 40417)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-09-21 08:35:07 UTC (rev 40418)
@@ -524,14 +524,14 @@
 	RNA_def_int(func, "index", 0, 0, INT_MAX, "Index", "Array index", 0, INT_MAX);
 	RNA_def_string(func, "action_group", "", 0, "Action Group", "Acton group to add this F-Curve into");
 
-	parm= RNA_def_pointer(func, "fcurve", "F-Curve", "", "Newly created F-Curve");
+	parm= RNA_def_pointer(func, "fcurve", "FCurve", "", "Newly created F-Curve");
 	RNA_def_function_return(func, parm);
 
 
 	func= RNA_def_function(srna, "remove", "rna_Action_fcurve_remove");
 	RNA_def_function_ui_description(func, "Remove action group");
 	RNA_def_function_flag(func, FUNC_USE_REPORTS);
-	parm= RNA_def_pointer(func, "fcurve", "F-Curve", "", "F-Curve to remove");
+	parm= RNA_def_pointer(func, "fcurve", "FCurve", "", "F-Curve to remove");
 	RNA_def_property_flag(parm, PROP_REQUIRED|PROP_NEVER_NULL);
 }
 




More information about the Bf-blender-cvs mailing list