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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-08 15:02:57 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-08 15:02:57 +0400
commite06f206450b634737e3d2b310d1c702a994f28fe (patch)
tree4f6d9add9e5e7e86c4d1cf8f2ef9850ec42853c3 /source/blender/editors/space_node/node_templates.c
parente0030d6c1c8c7ff15de2da6b3834958762a20c42 (diff)
Fix: incorrect use of IFACE_ macro, and correct a typo.
Diffstat (limited to 'source/blender/editors/space_node/node_templates.c')
-rw-r--r--source/blender/editors/space_node/node_templates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_templates.c b/source/blender/editors/space_node/node_templates.c
index b877bea6be9..806a6f98828 100644
--- a/source/blender/editors/space_node/node_templates.c
+++ b/source/blender/editors/space_node/node_templates.c
@@ -432,7 +432,7 @@ static void node_menu_column_foreach_cb(void *calldata, int nclass, const char *
NodeLinkArg *arg = (NodeLinkArg*)calldata;
if(!ELEM(nclass, NODE_CLASS_GROUP, NODE_CLASS_LAYOUT))
- ui_node_menu_column(arg, nclass, IFACE_(name));
+ ui_node_menu_column(arg, nclass, name);
}
static void ui_template_node_link_menu(bContext *C, uiLayout *layout, void *but_p)