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_display_sequencer.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_display_sequencer.cc')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_display_sequencer.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_display_sequencer.cc b/source/blender/editors/space_outliner/tree/tree_display_sequencer.cc
index 26afb720197..7c5137a72dd 100644
--- a/source/blender/editors/space_outliner/tree/tree_display_sequencer.cc
+++ b/source/blender/editors/space_outliner/tree/tree_display_sequencer.cc
@@ -24,10 +24,14 @@
#include "BLI_listbase_wrapper.hh"
#include "BLI_utildefines.h"
+#include "DNA_sequence_types.h"
+#include "DNA_space_types.h"
+
#include "SEQ_sequencer.h"
#include "../outliner_intern.hh"
#include "tree_display.hh"
+#include "tree_element.hh"
namespace blender::ed::outliner {