[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27261] trunk/blender/source/blender/ makesrna/intern/rna_object_force.c: effector shape names: old/new --> point /plane

Campbell Barton ideasman42 at gmail.com
Thu Mar 4 12:17:14 CET 2010


Revision: 27261
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27261
Author:   campbellbarton
Date:     2010-03-04 12:17:13 +0100 (Thu, 04 Mar 2010)

Log Message:
-----------
effector shape names: old/new --> point/plane

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_object_force.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_object_force.c	2010-03-04 11:14:29 UTC (rev 27260)
+++ trunk/blender/source/blender/makesrna/intern/rna_object_force.c	2010-03-04 11:17:13 UTC (rev 27261)
@@ -61,23 +61,23 @@
 };
 
 EnumPropertyItem vortex_shape_items[] = {
-	{PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
-	{PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+	{PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+	{PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
 	{PFIELD_SHAPE_SURFACE, "SURFACE", 0, "Surface falloff (New)", ""},
 	{PFIELD_SHAPE_POINTS, "POINTS", 0, "Every Point (New)", ""},
 	{0, NULL, 0, NULL, NULL}
 };
 
 EnumPropertyItem curve_vortex_shape_items[] = {
-	{PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
-	{PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+	{PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+	{PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
 	{PFIELD_SHAPE_SURFACE, "SURFACE", 0, "Curve (New)", ""},
 	{0, NULL, 0, NULL, NULL}
 };
 
 EnumPropertyItem empty_vortex_shape_items[] = {
-	{PFIELD_SHAPE_POINT, "POINT", 0, "Old", ""},
-	{PFIELD_SHAPE_PLANE, "PLANE", 0, "New", ""},
+	{PFIELD_SHAPE_POINT, "POINT", 0, "Point", ""},
+	{PFIELD_SHAPE_PLANE, "PLANE", 0, "Plane", ""},
 	{0, NULL, 0, NULL, NULL}
 };
 





More information about the Bf-blender-cvs mailing list