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:
authorHans Goudey <h.goudey@me.com>2022-01-18 22:32:36 +0300
committerHans Goudey <h.goudey@me.com>2022-01-18 22:32:36 +0300
commit221ff895d962a305d37eafd72f236a84d2e979b8 (patch)
tree2619008fd6fbdeb312df8de2119e56cb21b7f35f /source/blender/editors/space_node/node_intern.hh
parenta5610da1d5ece3a3800d65cff1da926ca6ccf6c2 (diff)
Cleanup: Use references, LISTBASE_FOREACH macro
Diffstat (limited to 'source/blender/editors/space_node/node_intern.hh')
-rw-r--r--source/blender/editors/space_node/node_intern.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_intern.hh b/source/blender/editors/space_node/node_intern.hh
index c811cb408b6..6016bf5da71 100644
--- a/source/blender/editors/space_node/node_intern.hh
+++ b/source/blender/editors/space_node/node_intern.hh
@@ -131,7 +131,7 @@ void node_draw_space(const bContext &C, ARegion &region);
* Sort nodes by selection: unselected nodes first, then selected,
* then the active node at the very end. Relative order is kept intact.
*/
-void node_sort(bNodeTree *ntree);
+void node_sort(bNodeTree &ntree);
void node_set_cursor(wmWindow &win, SpaceNode &snode, const blender::float2 &cursor);
/* DPI scaled coords */