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:
authorJacques Lucke <mail@jlucke.com>2020-01-04 15:24:29 +0300
committerJacques Lucke <mail@jlucke.com>2020-01-04 15:24:29 +0300
commitb2fb02515356bcf906888fed7a82cf78b13d8e01 (patch)
tree62441f0e36936ec7d4d274773bb4a5d97d87ff00 /source/blender/functions/FN_node_tree_multi_function_network.h
parent5e49e3df6e40b16a9baedb29c89b55b613c99516 (diff)
rename FunctionNodeTree to FunctionTree
Diffstat (limited to 'source/blender/functions/FN_node_tree_multi_function_network.h')
-rw-r--r--source/blender/functions/FN_node_tree_multi_function_network.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/functions/FN_node_tree_multi_function_network.h b/source/blender/functions/FN_node_tree_multi_function_network.h
index dc768858d99..05ae1517520 100644
--- a/source/blender/functions/FN_node_tree_multi_function_network.h
+++ b/source/blender/functions/FN_node_tree_multi_function_network.h
@@ -15,14 +15,14 @@ using BLI::MultiMap;
class DummySocketMap {
private:
- const FunctionNodeTree *m_function_tree;
+ const FunctionTree *m_function_tree;
const MFNetwork *m_network;
IndexToRefMap<const MFSocket> m_dummy_socket_by_fsocket_id;
IndexToRefMap<const FSocket> m_fsocket_by_dummy_socket_id;
public:
- DummySocketMap(const FunctionNodeTree &function_tree,
+ DummySocketMap(const FunctionTree &function_tree,
const MFNetwork &network,
IndexToRefMap<const MFSocket> dummy_socket_by_fsocket_id,
IndexToRefMap<const FSocket> fsocket_by_dummy_socket_id)
@@ -68,12 +68,12 @@ class DummySocketMap {
class FunctionTreeMFNetwork {
private:
- const FunctionNodeTree &m_function_tree;
+ const FunctionTree &m_function_tree;
std::unique_ptr<MFNetwork> m_network;
DummySocketMap m_socket_map;
public:
- FunctionTreeMFNetwork(const FunctionNodeTree &function_tree,
+ FunctionTreeMFNetwork(const FunctionTree &function_tree,
std::unique_ptr<MFNetwork> network,
DummySocketMap socket_map)
: m_function_tree(function_tree),
@@ -82,7 +82,7 @@ class FunctionTreeMFNetwork {
{
}
- const FunctionNodeTree &function_tree() const
+ const FunctionTree &function_tree() const
{
return m_function_tree;
}