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
path: root/source
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2008-02-03 03:55:39 +0300
committerKen Hughes <khughes@pacific.edu>2008-02-03 03:55:39 +0300
commit28401db37b3b7929a7169147bab85db5fb488fe8 (patch)
treee3a4597371439e7d9973d696229106289fd888e1 /source
parent601488154d8f68f8160aa80e4a686a341133cfd2 (diff)
Remove old debugging printf from node_make_addmenu().
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/header_node.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/src/header_node.c b/source/blender/src/header_node.c
index 39012f6addc..c9313c0edeb 100644
--- a/source/blender/src/header_node.c
+++ b/source/blender/src/header_node.c
@@ -275,7 +275,6 @@ static void node_make_addmenu(SpaceNode *snode, int nodeclass, uiBlock *block)
bNodeType *type;
for(a=0, type= ntree->alltypes.first; type; type=type->next) {
if( type->nclass == nodeclass ) {
- printf("node %s\n", type->name);
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, type->name, 0,
yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, type->type, "");
a++;