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>2022-01-14 20:00:21 +0300
committerJulian Eisel <julian@blender.org>2022-01-14 21:26:04 +0300
commite9a43a3b6060b57b75e42f27c288608352f000ea (patch)
tree0878652b226022fb24e0c94ecdbbdfaf3531c54b /source/blender/editors/space_outliner/tree/tree_element_overrides.cc
parent9109ea0b969f94e614e7a52807b00f3cd9e9383f (diff)
Cleanup: Remove Outliner C-API headers/wrappers
Basically this removes any C <-> C++ glue code. C++ types are accessed directly via the public C++ APIs. Contains some related changes like, moving functions that were previously declared in a now removed header to a different file, whose header is the more appropriate place (and the source file as well). But generally I tried to avoid other changes.
Diffstat (limited to 'source/blender/editors/space_outliner/tree/tree_element_overrides.cc')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_overrides.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_element_overrides.cc b/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
index 91f56d20a65..ba1471625b9 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
+++ b/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
@@ -27,10 +27,11 @@
#include "BLT_translation.h"
+#include "DNA_space_types.h"
+
#include "RNA_access.h"
#include "../outliner_intern.hh"
-#include "tree_display.h"
#include "tree_element_overrides.hh"