[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47899] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: Blender is using tabs, not spaces for indentation

Sergey Sharybin sergey.vfx at gmail.com
Thu Jun 14 15:48:11 CEST 2012


Revision: 47899
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47899
Author:   nazgul
Date:     2012-06-14 13:48:04 +0000 (Thu, 14 Jun 2012)
Log Message:
-----------
Blender is using tabs, not spaces for indentation

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-06-14 13:33:37 UTC (rev 47898)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-06-14 13:48:04 UTC (rev 47899)
@@ -3089,10 +3089,10 @@
 {
 	PropertyRNA *prop;
 
-    prop = RNA_def_property(srna, "smooth_mask", PROP_BOOLEAN, PROP_NONE);
-    RNA_def_property_boolean_sdna(prop, NULL, "custom1", 0);
-    RNA_def_property_ui_text(prop, "Anti-Alias", "Apply an anti-aliasing filter to the mask");
-    RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
+	prop = RNA_def_property(srna, "smooth_mask", PROP_BOOLEAN, PROP_NONE);
+	RNA_def_property_boolean_sdna(prop, NULL, "custom1", 0);
+	RNA_def_property_ui_text(prop, "Anti-Alias", "Apply an anti-aliasing filter to the mask");
+	RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 
 	prop = RNA_def_property(srna, "mask", PROP_POINTER, PROP_NONE);
 	RNA_def_property_pointer_sdna(prop, NULL, "id");




More information about the Bf-blender-cvs mailing list