From 313af960a340f8539214d53252e3186fe3dc8f40 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 24 Feb 2010 23:37:26 +0000 Subject: Merge NodeBase and NodeImpl. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2486 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/events/CreatePort.cpp | 2 +- src/engine/events/Delete.cpp | 2 +- src/engine/events/SetMetadata.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine/events') 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(obj); + NodeImpl* node = dynamic_cast(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(_object); - NodeBase* const node = dynamic_cast(_object); + NodeImpl* const node = dynamic_cast(_object); PortImpl* const port = dynamic_cast(_object); std::vector::const_iterator t = _types.begin(); -- cgit v1.2.1