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/nodes/texture
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/nodes/texture')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_common.c b/source/blender/nodes/texture/nodes/node_texture_common.c
index ee03323fb5d..d96042623b2 100644
--- a/source/blender/nodes/texture/nodes/node_texture_common.c
+++ b/source/blender/nodes/texture/nodes/node_texture_common.c
@@ -169,7 +169,6 @@ void register_node_type_tex_group(void)
node_type_size(&ntype, 120, 60, 200);
node_type_label(&ntype, node_group_label);
node_type_update(&ntype, NULL, node_group_verify);
- strcpy(ntype.group_tree_idname, "TextureNodeTree");
node_type_exec(&ntype, group_initexec, group_freeexec, group_execute);
nodeRegisterType(&ntype);