diff options
Diffstat (limited to 'src/engine/events')
-rw-r--r-- | src/engine/events/CreatePort.cpp | 2 | ||||
-rw-r--r-- | src/engine/events/Delete.cpp | 2 | ||||
-rw-r--r-- | src/engine/events/SetMetadata.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/events/CreatePort.cpp b/src/engine/events/CreatePort.cpp index 7d8f9d16..4aebc0b2 100644 --- a/src/engine/events/CreatePort.cpp +++ b/src/engine/events/CreatePort.cpp @@ -62,7 +62,7 @@ CreatePort::CreatePort( , _properties(properties) { /* This is blocking because of the two different sets of Patch ports, the array used in the - * audio thread (inherited from NodeBase), and the arrays used in the pre processor thread. + * audio thread (inherited from NodeImpl), and the arrays used in the pre processor thread. * If two add port events arrive in the same cycle and the second pre processes before the * first executes, bad things happen (ports are lost). * diff --git a/src/engine/events/Delete.cpp b/src/engine/events/Delete.cpp index 31e249f5..9e4548ac 100644 --- a/src/engine/events/Delete.cpp +++ b/src/engine/events/Delete.cpp @@ -24,7 +24,7 @@ #include "Driver.hpp" #include "Engine.hpp" #include "EngineStore.hpp" -#include "NodeBase.hpp" +#include "NodeImpl.hpp" #include "PatchImpl.hpp" #include "PluginImpl.hpp" #include "PortImpl.hpp" diff --git a/src/engine/events/SetMetadata.cpp b/src/engine/events/SetMetadata.cpp index 4de74eac..c1cc97f0 100644 --- a/src/engine/events/SetMetadata.cpp +++ b/src/engine/events/SetMetadata.cpp @@ -231,7 +231,7 @@ SetMetadata::pre_process() op = POLYPHONIC; _blocking = true; obj->set_property(key, value.get_bool()); - NodeBase* node = dynamic_cast<NodeBase*>(obj); + NodeImpl* node = dynamic_cast<NodeImpl*>(obj); if (node) node->set_polyphonic(value.get_bool()); if (value.get_bool()) { @@ -280,7 +280,7 @@ SetMetadata::execute(ProcessContext& context) (*i)->execute(context); GraphObjectImpl* const object = dynamic_cast<GraphObjectImpl*>(_object); - NodeBase* const node = dynamic_cast<NodeBase*>(_object); + NodeImpl* const node = dynamic_cast<NodeImpl*>(_object); PortImpl* const port = dynamic_cast<PortImpl*>(_object); std::vector<SpecialType>::const_iterator t = _types.begin(); |