summaryrefslogtreecommitdiffstats
path: root/src/server/BlockImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/BlockImpl.cpp')
-rw-r--r--src/server/BlockImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/BlockImpl.cpp b/src/server/BlockImpl.cpp
index 2ccb0e2f..6c09e9b7 100644
--- a/src/server/BlockImpl.cpp
+++ b/src/server/BlockImpl.cpp
@@ -38,7 +38,7 @@ BlockImpl::BlockImpl(PluginImpl* plugin,
bool polyphonic,
GraphImpl* parent,
SampleRate srate)
- : GraphObjectImpl(plugin->uris(), parent, symbol)
+ : NodeImpl(plugin->uris(), parent, symbol)
, _plugin(plugin)
, _ports(NULL)
, _context(Context::AUDIO)
@@ -64,7 +64,7 @@ BlockImpl::~BlockImpl()
delete _ports;
}
-GraphObject*
+Node*
BlockImpl::port(uint32_t index) const
{
return (*_ports)[index];