[Bf-blender-cvs] [f73a420e5ac] geometry-nodes: Cleanup: Nodes Modifier header to its proper location

Dalai Felinto noreply at git.blender.org
Thu Oct 29 17:37:51 CET 2020


Commit: f73a420e5aceb610bc388f48dffd4e492e952d73
Author: Dalai Felinto
Date:   Thu Oct 29 17:28:36 2020 +0100
Branches: geometry-nodes
https://developer.blender.org/rBf73a420e5aceb610bc388f48dffd4e492e952d73

Cleanup: Nodes Modifier header to its proper location

===================================================================

M	source/blender/blenkernel/intern/node.c
M	source/blender/makesrna/intern/rna_modifier.c
R100	source/blender/modifiers/intern/MOD_nodes.h	source/blender/modifiers/MOD_nodes.h

===================================================================

diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c
index e4fa50cb693..5f6ceb026c0 100644
--- a/source/blender/blenkernel/intern/node.c
+++ b/source/blender/blenkernel/intern/node.c
@@ -85,7 +85,7 @@
 
 #include "BLO_read_write.h"
 
-#include "intern/MOD_nodes.h"
+#include "MOD_nodes.h"
 
 #define NODE_DEFAULT_MAX_WIDTH 700
 
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index d9463f778be..0ce56e66fab 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -57,7 +57,7 @@
 #include "WM_api.h"
 #include "WM_types.h"
 
-#include "intern/MOD_nodes.h"
+#include "MOD_nodes.h"
 
 const EnumPropertyItem rna_enum_object_modifier_type_items[] = {
     {0, "", 0, N_("Modify"), ""},
diff --git a/source/blender/modifiers/intern/MOD_nodes.h b/source/blender/modifiers/MOD_nodes.h
similarity index 100%
rename from source/blender/modifiers/intern/MOD_nodes.h
rename to source/blender/modifiers/MOD_nodes.h



More information about the Bf-blender-cvs mailing list