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/tree/tree_element_rna.hh')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_rna.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_element_rna.hh b/source/blender/editors/space_outliner/tree/tree_element_rna.hh
index bce527e724b..8f53a8b7f31 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_rna.hh
+++ b/source/blender/editors/space_outliner/tree/tree_element_rna.hh
@@ -47,7 +47,7 @@ class TreeElementRNACommon : public AbstractTreeElement {
* If this element represents a property or is part of a property (array element), this returns
* the property. Otherwise nullptr.
*/
- virtual PropertyRNA *getRNAProperty() const;
+ virtual PropertyRNA *getPropertyRNA() const;
bool isRNAValid() const;
};
@@ -70,7 +70,7 @@ class TreeElementRNAProperty : public TreeElementRNACommon {
TreeElementRNAProperty(TreeElement &legacy_te, PointerRNA &rna_ptr, int index);
void expand(SpaceOutliner &space_outliner) const override;
- PropertyRNA *getRNAProperty() const override;
+ PropertyRNA *getPropertyRNA() const override;
};
/* -------------------------------------------------------------------- */
@@ -79,7 +79,7 @@ class TreeElementRNAArrayElement : public TreeElementRNACommon {
public:
TreeElementRNAArrayElement(TreeElement &legacy_te, PointerRNA &rna_ptr, int index);
- PropertyRNA *getRNAProperty() const override;
+ PropertyRNA *getPropertyRNA() const override;
};
} // namespace blender::ed::outliner