Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-10-04 17:26:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-04 17:26:15 +0400
commitd8144ef0f57bfba6973b7de34fe8238ab88707cc (patch)
tree8bdf379732db4e6b4bb1675f15b4aec8c18426a3 /source/blender/makesrna/intern/rna_nodetree.c
parentbdb95acac8757978630a67a187b9ad02d455fb56 (diff)
style cleanup: comment blocks
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index af3a8691e08..b03d348b49d 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -2195,14 +2195,14 @@ static void def_cmp_inpaint(StructRNA *srna)
{
PropertyRNA *prop;
-/*
+#if 0
prop = RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "custom1");
RNA_def_property_enum_items(prop, type_items);
RNA_def_property_ui_text(prop, "Type", "Type of inpaint algorithm");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
-*/
+#endif
prop = RNA_def_property(srna, "distance", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "custom2");