From 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Jun 2006 00:42:15 +0000 Subject: Renamed PortBase to TypedPort git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/events/SetPortValueQueuedEvent.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libs/engine/events/SetPortValueQueuedEvent.cpp') diff --git a/src/libs/engine/events/SetPortValueQueuedEvent.cpp b/src/libs/engine/events/SetPortValueQueuedEvent.cpp index c7750064..3e93b01b 100644 --- a/src/libs/engine/events/SetPortValueQueuedEvent.cpp +++ b/src/libs/engine/events/SetPortValueQueuedEvent.cpp @@ -18,7 +18,7 @@ #include "Responder.h" #include "Om.h" #include "OmApp.h" -#include "PortBase.h" +#include "TypedPort.h" #include "ClientBroadcaster.h" #include "Plugin.h" #include "Node.h" @@ -75,9 +75,9 @@ SetPortValueQueuedEvent::execute(samplecount offset) if (m_error == NO_ERROR) { assert(m_port != NULL); if (m_voice_num == -1) - ((PortBase*)m_port)->set_value(m_val, offset); + ((TypedPort*)m_port)->set_value(m_val, offset); else - ((PortBase*)m_port)->buffer(m_voice_num)->set(m_val, offset); // FIXME: check range + ((TypedPort*)m_port)->buffer(m_voice_num)->set(m_val, offset); // FIXME: check range } } -- cgit v1.2.1