diff options
Diffstat (limited to 'src/libs/engine/Node.h')
-rw-r--r-- | src/libs/engine/Node.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/Node.h b/src/libs/engine/Node.h index 4fe43d03..93f032a8 100644 --- a/src/libs/engine/Node.h +++ b/src/libs/engine/Node.h @@ -87,14 +87,14 @@ public: /** Nodes that are connected to this Node's inputs. * (This Node depends on them) */ - virtual Raul::List<Node*>* providers() = 0; - virtual void providers(Raul::List<Node*>* l) = 0; + virtual Raul::List<Node*>* providers() = 0; + virtual void providers(Raul::List<Node*>* l) = 0; /** Nodes are are connected to this Node's outputs. * (They depend on this Node) */ - virtual Raul::List<Node*>* dependants() = 0; - virtual void dependants(Raul::List<Node*>* l) = 0; + virtual Raul::List<Node*>* dependants() = 0; + virtual void dependants(Raul::List<Node*>* l) = 0; /** The Patch this Node belongs to. */ virtual Patch* parent_patch() const = 0; |