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-05 20:01:31 +0300
committerJulian Eisel <julian@blender.org>2021-03-05 20:07:35 +0300
commit3a907e742507dde9b26eb5f531c18ad00b0e2ab6 (patch)
tree032dc8633d90171785cb1446e49cd626404649ed /source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh
parentae005393dce4746c0ee97887ea1a81281a1f726f (diff)
Outliner: Barebones to port IDs to new Outliner tree-element code design
Continuation of work in 2e221de4ceee and 249e4df110e0 . This prepares things so we can start porting the individual ID types to the new code design. I already added some code for library IDs, because they need some special handling during construction, which I didn't want to break. The `AbstractTreeElement::isExpandValid()` check can be removed once types were ported and can be assumed to have a proper `expand()` implemenation. Also makes `TreeElementGPencilLayer` `final` which I forgot in e0442a955bad.
Diffstat (limited to 'source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh b/source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh
index dd18dd42344..da57ef63f1f 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh
+++ b/source/blender/editors/space_outliner/tree/tree_element_gpencil_layer.hh
@@ -26,7 +26,7 @@ struct bGPDlayer;
namespace blender::ed::outliner {
-class TreeElementGPencilLayer : public AbstractTreeElement {
+class TreeElementGPencilLayer final : public AbstractTreeElement {
public:
TreeElementGPencilLayer(TreeElement &legacy_te, bGPDlayer &gplayer);
};