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:
authorJulian Eisel <julian@blender.org>2020-11-09 15:50:19 +0300
committerJulian Eisel <julian@blender.org>2020-11-11 21:09:15 +0300
commit40aa69e2eb6896f559153f48a83c870691f2f86a (patch)
treeb58ff6ccca5e2afd18da8365705f47112eac0a38 /source/blender/editors/space_outliner/outliner_tree.c
parentc2b3a68f248e67c9dc1289f289d998785d780175 (diff)
Cleanup: Split header for Outliner tree building into C and C++ headers
See https://developer.blender.org/D9499. It's odd to include a C++ header (".hh") in C code, we should avoid that. All of the Outliner code should be moved to C++, I don't expect this C header to stay for long.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_tree.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_tree.c b/source/blender/editors/space_outliner/outliner_tree.c
index 26871ef14a0..83be26793ee 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -85,7 +85,7 @@
#include "UI_interface.h"
#include "outliner_intern.h"
-#include "tree/tree_display.hh"
+#include "tree/tree_display.h"
#ifdef WIN32
# include "BLI_math_base.h" /* M_PI */