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-07 05:02:32 +0300
committerJulian Eisel <julian@blender.org>2020-11-11 21:08:49 +0300
commitad0c387fdf6ed8bfdaedb7f40717ce1811c5680a (patch)
tree8cb917b37c79a5f7bc474f36dc63191e4ef93846 /source/blender/editors/space_outliner/outliner_intern.h
parent5fb67573b5fb115a7b7f6588ef0fca6f07ee60d0 (diff)
Cleanup: Put Outliner C++ namespace into `blender::ed` namespace, add comments
See https://developer.blender.org/D9499. Also remove unnecessary forward declaration.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_intern.h')
-rw-r--r--source/blender/editors/space_outliner/outliner_intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h
index 56098d72c8f..adcbcb5a310 100644
--- a/source/blender/editors/space_outliner/outliner_intern.h
+++ b/source/blender/editors/space_outliner/outliner_intern.h
@@ -47,6 +47,9 @@ struct wmKeyConfig;
struct wmOperatorType;
typedef struct SpaceOutliner_Runtime {
+ /**
+ * Internal C++ object to create and manage the tree for a specific display type (View Layers,
+ * Scenes, Blender File, etc.). */
struct TreeView *tree_view;
} SpaceOutliner_Runtime;