[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27042] branches/soc-2008-mxcurioni/source /blender: Removed from the Scene data structure a Freestyle-related member that

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sun Feb 21 02:03:37 CET 2010


Revision: 27042
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27042
Author:   kjym3
Date:     2010-02-21 02:03:36 +0100 (Sun, 21 Feb 2010)

Log Message:
-----------
Removed from the Scene data structure a Freestyle-related member that
was no longer used.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/makesdna/DNA_scene_types.h
    branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_scene.c

Modified: branches/soc-2008-mxcurioni/source/blender/makesdna/DNA_scene_types.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/makesdna/DNA_scene_types.h	2010-02-20 22:57:49 UTC (rev 27041)
+++ branches/soc-2008-mxcurioni/source/blender/makesdna/DNA_scene_types.h	2010-02-21 01:03:36 UTC (rev 27042)
@@ -792,11 +792,6 @@
 
 	/* Physics simulation settings */
 	struct PhysicsSettings physics_settings;
-	
-	/* Freestyle */
-	short freestyle_current_layer_number;
-	short pad[3];
-	
 } Scene;
 
 

Modified: branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_scene.c	2010-02-20 22:57:49 UTC (rev 27041)
+++ branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_scene.c	2010-02-21 01:03:36 UTC (rev 27042)
@@ -2923,12 +2923,6 @@
 	RNA_def_property_struct_type(prop, "GreasePencil");
 	RNA_def_property_ui_text(prop, "Grease Pencil Data", "Grease Pencil datablock");
 
-	/* Freestyle */
-	prop= RNA_def_property(srna, "freestyle_current_layer_number", PROP_INT, PROP_NONE);
-	RNA_def_property_int_sdna(prop, NULL, "freestyle_current_layer_number");
-	RNA_def_property_ui_text(prop, "Freestyle Current Layer Number", "Number of current layers in Freestyle.");
-	RNA_def_property_update(prop, NC_SCENE, NULL);
-	
 	/* Transform Orientations */
 	prop= RNA_def_property(srna, "orientations", PROP_COLLECTION, PROP_NONE);
 	RNA_def_property_collection_sdna(prop, NULL, "transform_spaces", NULL);





More information about the Bf-blender-cvs mailing list