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 <eiseljulian@gmail.com>2017-03-01 13:28:17 +0300
committerJulian Eisel <eiseljulian@gmail.com>2017-03-01 13:28:17 +0300
commit0b0347dcca07298a7d72772c23e7503c0505016f (patch)
tree52f27e30ee17148c8868c1c7b49827a03e70df49 /source/blender/editors/space_outliner/outliner_utils.c
parent512fb74980c5ebc70fe625654b104a5c6e6b498c (diff)
Cleanup: Rename outliner enum
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 00b0a6a746c..0e3a4e89fdf 100644
--- a/source/blender/editors/space_outliner/outliner_utils.c
+++ b/source/blender/editors/space_outliner/outliner_utils.c
@@ -201,7 +201,7 @@ bool outliner_tree_traverse(const SpaceOops *soops, ListBase *tree, int filter_t
TreeTraversalFunc func, void *customdata)
{
for (TreeElement *te = tree->first, *te_next; te; te = te_next) {
- TreeTraversalReturn func_retval = TRAVERSE_CONTINUE;
+ TreeTraversalAction func_retval = TRAVERSE_CONTINUE;
/* in case te is freed in callback */
TreeStoreElem *tselem = TREESTORE(te);
ListBase subtree = te->subtree;