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:
Diffstat (limited to 'source/blender/editors/space_outliner/space_outliner.cc')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.cc b/source/blender/editors/space_outliner/space_outliner.cc
index 76b7197b86a..d6cdf80779f 100644
--- a/source/blender/editors/space_outliner/space_outliner.cc
+++ b/source/blender/editors/space_outliner/space_outliner.cc
@@ -39,6 +39,10 @@
namespace blender::ed::outliner {
+SpaceOutliner_Runtime::SpaceOutliner_Runtime() : root_elements()
+{
+}
+
SpaceOutliner_Runtime::SpaceOutliner_Runtime(const SpaceOutliner_Runtime & /*other*/)
: tree_display(nullptr), tree_hash(nullptr)
{
@@ -345,7 +349,6 @@ static void outliner_free(SpaceLink *sl)
{
SpaceOutliner *space_outliner = (SpaceOutliner *)sl;
- outliner_free_tree(&space_outliner->tree);
if (space_outliner->treestore) {
BLI_mempool_destroy(space_outliner->treestore);
}