[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50010] branches/soc-2012-bratwurst/source /blender/makesrna/intern/rna_nodetree.c: fix for build error after merging

Campbell Barton ideasman42 at gmail.com
Sun Aug 19 13:18:28 CEST 2012


Revision: 50010
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50010
Author:   campbellbarton
Date:     2012-08-19 11:18:27 +0000 (Sun, 19 Aug 2012)
Log Message:
-----------
fix for build error after merging

Modified Paths:
--------------
    branches/soc-2012-bratwurst/source/blender/makesrna/intern/rna_nodetree.c

Modified: branches/soc-2012-bratwurst/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- branches/soc-2012-bratwurst/source/blender/makesrna/intern/rna_nodetree.c	2012-08-19 11:04:01 UTC (rev 50009)
+++ branches/soc-2012-bratwurst/source/blender/makesrna/intern/rna_nodetree.c	2012-08-19 11:18:27 UTC (rev 50010)
@@ -4122,7 +4122,7 @@
 
 	prop = RNA_def_property(srna, "hide", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", SOCK_HIDDEN);
-	RNA_def_property_boolean_funcs(prop, NULL, "rna_NodeSocket_hide_set");
+	RNA_def_property_boolean_funcs(prop, NULL, "rna_NodeSocket_hide_set", NULL);
 	RNA_def_property_ui_text(prop, "Hide", "Hide the socket");
 	RNA_def_property_update(prop, NC_NODE | NA_EDITED, NULL);
 




More information about the Bf-blender-cvs mailing list