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>2021-03-08 17:40:25 +0300
committerJulian Eisel <julian@blender.org>2021-03-08 20:38:23 +0300
commitf0ad78e17c3b48b457ad2cda9224924500e89eb9 (patch)
tree810c20c82d77e35a48f6296bf56275da5fac3e24 /source/blender/editors/space_outliner/CMakeLists.txt
parent4292bb060d598659889e7448e02142248564fae7 (diff)
Cleanup: Rename recently added Outliner files to exclude "_base" suffix
These files can contain more than just the "base" tree element types. E.g. the class for the view-layer base element can also contain the class for the view-layer elements. Otherwise we'd end up with like >50 files for the individual types, most of them very small. So just give the files a general name and put the related classes in there.
Diffstat (limited to 'source/blender/editors/space_outliner/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_outliner/CMakeLists.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/space_outliner/CMakeLists.txt b/source/blender/editors/space_outliner/CMakeLists.txt
index 82c87a7b199..0306807d9ad 100644
--- a/source/blender/editors/space_outliner/CMakeLists.txt
+++ b/source/blender/editors/space_outliner/CMakeLists.txt
@@ -56,13 +56,13 @@ set(SRC
tree/tree_display_view_layer.cc
tree/tree_element.cc
tree/tree_element_anim_data.cc
- tree/tree_element_collection_base.cc
- tree/tree_element_driver_base.cc
+ tree/tree_element_collection.cc
+ tree/tree_element_driver.cc
tree/tree_element_gpencil_layer.cc
tree/tree_element_id.cc
tree/tree_element_nla.cc
- tree/tree_element_scene_objects_base.cc
- tree/tree_element_view_layer_base.cc
+ tree/tree_element_scene_objects.cc
+ tree/tree_element_view_layer.cc
outliner_intern.h
tree/tree_display.h
@@ -70,13 +70,13 @@ set(SRC
tree/tree_element.h
tree/tree_element.hh
tree/tree_element_anim_data.hh
- tree/tree_element_collection_base.hh
- tree/tree_element_driver_base.hh
+ tree/tree_element_collection.hh
+ tree/tree_element_driver.hh
tree/tree_element_gpencil_layer.hh
tree/tree_element_id.hh
tree/tree_element_nla.hh
- tree/tree_element_scene_objects_base.hh
- tree/tree_element_view_layer_base.hh
+ tree/tree_element_scene_objects.hh
+ tree/tree_element_view_layer.hh
)
set(LIB