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:
authorLukas Toenne <lukas.toenne@googlemail.com>2013-04-20 21:57:45 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-04-20 21:57:45 +0400
commitc66acbf3d990c4a4fbd535a796ba712abe11489b (patch)
tree8f291cacb0e50c0fd2b0c76309b8e15f1559d9e7 /source/blender/blenkernel/BKE_node.h
parent01f8b229c94b823ba8745e421ee4c3a8712a7237 (diff)
Removed the group_tree_idname property from node types. This was a bit of a hack to associate node group types to specific tree types for node group operators. Since the node group operators now work independent from this property (see r56183) that property is no longer needed and just pollutes the bNodeType struct.
Diffstat (limited to 'source/blender/blenkernel/BKE_node.h')
-rw-r--r--source/blender/blenkernel/BKE_node.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h
index aca5d49824c..adef4853002 100644
--- a/source/blender/blenkernel/BKE_node.h
+++ b/source/blender/blenkernel/BKE_node.h
@@ -222,14 +222,6 @@ typedef struct bNodeType {
/* gpu */
NodeGPUExecFunction gpufunc;
- /* Group type static info
- *
- * XXX This data is needed by group operators. If these operators could be implemented completely in Python,
- * the static data could instead be stored in Python classes and would need no special treatment.
- * Due to the way group operators move nodes between data blocks this is currently not possible.
- */
- char group_tree_idname[64]; /* tree type associated to the group node type */
-
/* RNA integration */
ExtensionRNA ext;
} bNodeType;