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:
authorCampbell Barton <ideasman42@gmail.com>2017-11-14 09:00:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-14 09:08:34 +0300
commitb5eeec715efd7124610316b3ebf0791eb2fd6fef (patch)
tree31fe4498f8a86af94a5216c9d772424c12827ba0 /source/blender/editors/space_node
parent289f9f42ff049a672b5235230435c16bc361b04e (diff)
Cleanup: remove BLI_blenlib from ghash header
This causes source files to depend on ghash header for BLI_string/rect/listbase. Also quiet warnings.
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_manipulators.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/editors/space_node/node_manipulators.c b/source/blender/editors/space_node/node_manipulators.c
index 8e736e47963..73b0f44b043 100644
--- a/source/blender/editors/space_node/node_manipulators.c
+++ b/source/blender/editors/space_node/node_manipulators.c
@@ -24,11 +24,13 @@
#include <math.h>
-#include "BKE_context.h"
-#include "BKE_image.h"
-
+#include "BLI_utildefines.h"
#include "BLI_math_matrix.h"
#include "BLI_math_vector.h"
+#include "BLI_rect.h"
+
+#include "BKE_context.h"
+#include "BKE_image.h"
#include "ED_screen.h"
#include "ED_manipulator_library.h"