summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Patch.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-06-19 00:42:15 +0000
committerDavid Robillard <d@drobilla.net>2006-06-19 00:42:15 +0000
commit4adc4f4a2b4f57f43affcd48f2c01c60f471b20a (patch)
tree48b36e2df65257905fde0141f5301347ca643f24 /src/libs/engine/Patch.cpp
parentb1b4335b767f34b41903a85040cd07dabe0f33ec (diff)
downloadingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.gz
ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.bz2
ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.zip
Renamed PortBase to TypedPort
git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Patch.cpp')
-rw-r--r--src/libs/engine/Patch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/Patch.cpp b/src/libs/engine/Patch.cpp
index 1e9aa566..b24377e0 100644
--- a/src/libs/engine/Patch.cpp
+++ b/src/libs/engine/Patch.cpp
@@ -26,7 +26,7 @@
#include "Connection.h"
#include "Om.h"
#include "OmApp.h"
-#include "PortBase.h"
+#include "TypedPort.h"
#include "ObjectStore.h"
#include "InputPort.h"
#include "OutputPort.h"
@@ -169,7 +169,7 @@ Patch::send_creation_messages(ClientInterface* client) const
// If this is a bridge (input/output) node, send the patch control value as well
if (port != NULL && port->port_info()->is_control())
om->client_broadcaster()->send_control_change_to(client, port->path(),
- ((PortBase<sample>*)port)->buffer(0)->value_at(0));
+ ((TypedPort<sample>*)port)->buffer(0)->value_at(0));
}
for (List<Connection*>::const_iterator j = _connections.begin(); j != _connections.end(); ++j) {
@@ -187,7 +187,7 @@ Patch::send_creation_messages(ClientInterface* client) const
if (port->port_info()->is_control())
om->client_broadcaster()->send_control_change_to(client, port->path(),
- ((PortBase<sample>*)port)->buffer(0)->value_at(0));
+ ((TypedPort<sample>*)port)->buffer(0)->value_at(0));
}*/
}
#endif