[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47097] trunk/blender/source/blender/ python/intern/bpy_props.c: missing from previous commit

Campbell Barton ideasman42 at gmail.com
Sun May 27 23:56:20 CEST 2012


Revision: 47097
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47097
Author:   campbellbarton
Date:     2012-05-27 21:56:19 +0000 (Sun, 27 May 2012)
Log Message:
-----------
missing from previous commit

Modified Paths:
--------------
    trunk/blender/source/blender/python/intern/bpy_props.c

Modified: trunk/blender/source/blender/python/intern/bpy_props.c
===================================================================
--- trunk/blender/source/blender/python/intern/bpy_props.c	2012-05-27 20:57:24 UTC (rev 47096)
+++ trunk/blender/source/blender/python/intern/bpy_props.c	2012-05-27 21:56:19 UTC (rev 47097)
@@ -501,7 +501,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(BoolVectorProperty, property_flag_items, property_subtype_array_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(BoolVectorProperty, property_flag_items, property_subtype_array_items);
 
 		if (size < 1 || size > PYRNA_STACK_ARRAY) {
 			PyErr_Format(PyExc_TypeError,
@@ -588,7 +588,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(IntProperty, property_flag_items, property_subtype_number_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(IntProperty, property_flag_items, property_subtype_number_items);
 
 		if (bpy_prop_callback_check(update_cb, 2) == -1) {
 			return NULL;
@@ -674,7 +674,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(IntVectorProperty, property_flag_items, property_subtype_array_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(IntVectorProperty, property_flag_items, property_subtype_array_items);
 
 		if (size < 1 || size > PYRNA_STACK_ARRAY) {
 			PyErr_Format(PyExc_TypeError,
@@ -769,7 +769,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(FloatProperty, property_flag_items, property_subtype_number_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(FloatProperty, property_flag_items, property_subtype_number_items);
 
 		if (pyunit && RNA_enum_value_from_id(property_unit_items, pyunit, &unit) == 0) {
 			PyErr_Format(PyExc_TypeError, "FloatProperty(unit='%s'): invalid unit", pyunit);
@@ -865,7 +865,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(FloatVectorProperty, property_flag_items, property_subtype_array_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(FloatVectorProperty, property_flag_items, property_subtype_array_items);
 
 		if (pyunit && RNA_enum_value_from_id(property_unit_items, pyunit, &unit) == 0) {
 			PyErr_Format(PyExc_TypeError, "FloatVectorProperty(unit='%s'): invalid unit", pyunit);
@@ -953,7 +953,7 @@
 			return NULL;
 		}
 
-		BPY_PROPDEF_SUBTYPE_CHECK(StringProperty, property_flag_items, property_subtype_string_items)
+		BPY_PROPDEF_SUBTYPE_CHECK(StringProperty, property_flag_items, property_subtype_string_items);
 
 		if (bpy_prop_callback_check(update_cb, 2) == -1) {
 			return NULL;




More information about the Bf-blender-cvs mailing list