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-03-07 21:19:39 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-03-07 21:26:02 +0300
commit9867a82072bb7d4394cbe8679b6c73d4ae209dbe (patch)
tree3cf4d622f8cdf8d3b395ff9d526c9ffdcf10f7dc /source/blender/editors/space_outliner/outliner_utils.c
parent6b49a9db524968acd5ba0aab2b294ecfbef24ef8 (diff)
Cleanup: Outliner: Remove unused parameter
Searching back in the outliner did not require the unused SpaceOutliner parameter.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_utils.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_utils.c b/source/blender/editors/space_outliner/outliner_utils.c
index a12defac813..61ba4e9551d 100644
--- a/source/blender/editors/space_outliner/outliner_utils.c
+++ b/source/blender/editors/space_outliner/outliner_utils.c
@@ -255,7 +255,7 @@ TreeElement *outliner_find_editbone(ListBase *lb, const EditBone *ebone)
return NULL;
}
-ID *outliner_search_back(SpaceOutliner *UNUSED(soops), TreeElement *te, short idcode)
+ID *outliner_search_back(TreeElement *te, short idcode)
{
TreeStoreElem *tselem;
te = te->parent;