From 3a7361ec395293477bb395832459339348fb8e8b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 1 Jun 2017 15:42:53 +0200 Subject: Depsgraph: Cleanup, use DEG_NODE_CLASS prefix for node classes --- source/blender/depsgraph/intern/nodes/deg_node.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/depsgraph/intern/nodes') diff --git a/source/blender/depsgraph/intern/nodes/deg_node.cc b/source/blender/depsgraph/intern/nodes/deg_node.cc index bd9d0b37e2e..be4783e616f 100644 --- a/source/blender/depsgraph/intern/nodes/deg_node.cc +++ b/source/blender/depsgraph/intern/nodes/deg_node.cc @@ -61,11 +61,11 @@ DepsNode::TypeInfo::TypeInfo(eDepsNode_Type type, const char *tname) { this->type = type; if (type == DEG_NODE_TYPE_OPERATION) - this->tclass = DEPSNODE_CLASS_OPERATION; + this->tclass = DEG_NODE_CLASS_OPERATION; else if (type < DEG_NODE_TYPE_PARAMETERS) - this->tclass = DEPSNODE_CLASS_GENERIC; + this->tclass = DEG_NODE_CLASS_GENERIC; else - this->tclass = DEPSNODE_CLASS_COMPONENT; + this->tclass = DEG_NODE_CLASS_COMPONENT; this->tname = tname; } -- cgit v1.2.3