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:
authorNathan Craddock <nzcraddock@gmail.com>2020-11-26 23:38:24 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-11-27 06:37:54 +0300
commit45dca05b1cd2a5ead59144c93d790fdfe7c35ee6 (patch)
tree3b39743ae1564f12d2ffd51947ea6bebf27ca813 /source/blender/editors/space_outliner/outliner_intern.h
parentab4654cdfe8f393d70426456a29c3ae0bfc4ac03 (diff)
Cleanup: Add `r_` to return parameter
Prefix a return parameter with `r_` to follow the style guide. No functional changes.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_intern.h')
-rw-r--r--source/blender/editors/space_outliner/outliner_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h
index 40e83291322..aefba929c5e 100644
--- a/source/blender/editors/space_outliner/outliner_intern.h
+++ b/source/blender/editors/space_outliner/outliner_intern.h
@@ -517,7 +517,7 @@ TreeElement *outliner_find_item_at_y(const SpaceOutliner *space_outliner,
TreeElement *outliner_find_item_at_x_in_row(const SpaceOutliner *space_outliner,
TreeElement *parent_te,
float view_co_x,
- bool *row_merged,
+ bool *r_is_merged_icon,
bool *r_is_over_icon);
TreeElement *outliner_find_tse(struct SpaceOutliner *space_outliner, const TreeStoreElem *tse);
TreeElement *outliner_find_tree_element(ListBase *lb, const TreeStoreElem *store_elem);