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>2022-01-14 21:19:22 +0300
committerJulian Eisel <julian@blender.org>2022-01-14 21:26:04 +0300
commit67517c7d5c08a32d7a2f01bd2804d165aa6963c8 (patch)
tree4e85b115e70591eb33e8408f32b93fabf5f7a2af /source/blender/editors/space_outliner/outliner_draw.cc
parent41495707d207db94db238e0bce5bd2dd90cbdbef (diff)
Cleanup: Outliner function names, simplify struct initialization
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.cc')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.cc b/source/blender/editors/space_outliner/outliner_draw.cc
index bc4b4e4f3b8..6de8d9539a9 100644
--- a/source/blender/editors/space_outliner/outliner_draw.cc
+++ b/source/blender/editors/space_outliner/outliner_draw.cc
@@ -2185,7 +2185,7 @@ static bool outliner_draw_warning_tree_element(uiBlock *block,
int icon = ICON_NONE;
const char *tip = "";
- const bool has_warning = outliner_element_warnings_get(te, &icon, &tip);
+ const bool has_warning = tree_element_warnings_get(te, &icon, &tip);
BLI_assert(has_warning);
UNUSED_VARS_NDEBUG(has_warning);