[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24552] trunk/blender/source/blender/ makesrna/intern/rna_object.c: report this broke MSVC

Campbell Barton ideasman42 at gmail.com
Fri Nov 13 19:47:21 CET 2009


Revision: 24552
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24552
Author:   campbellbarton
Date:     2009-11-13 19:47:20 +0100 (Fri, 13 Nov 2009)

Log Message:
-----------
report this broke MSVC

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_object.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_object.c	2009-11-13 17:42:44 UTC (rev 24551)
+++ trunk/blender/source/blender/makesrna/intern/rna_object.c	2009-11-13 18:47:20 UTC (rev 24552)
@@ -1195,11 +1195,11 @@
 
 
 	/* Collection active property */
-	PropertyRNA *prop_act= RNA_def_property(srna, "active", PROP_POINTER, PROP_NONE);
-	RNA_def_property_struct_type(prop_act, "Constraint");
-	RNA_def_property_pointer_funcs(prop_act, "rna_Object_active_constraint_get", "rna_Object_active_constraint_set", NULL);
-	RNA_def_property_flag(prop_act, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop_act, "Active Constraint", "Active Object constraint.");
+	PropertyRNA *prop= RNA_def_property(srna, "active", PROP_POINTER, PROP_NONE);
+	RNA_def_property_struct_type(prop, "Constraint");
+	RNA_def_property_pointer_funcs(prop, "rna_Object_active_constraint_get", "rna_Object_active_constraint_set", NULL);
+	RNA_def_property_flag(prop, PROP_EDITABLE);
+	RNA_def_property_ui_text(prop, "Active Constraint", "Active Object constraint.");
 
 
 	/* Constraint collection */





More information about the Bf-blender-cvs mailing list