diff options
Diffstat (limited to 'src/server/BlockFactory.cpp')
-rw-r--r-- | src/server/BlockFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/BlockFactory.cpp b/src/server/BlockFactory.cpp index 101c97e8..9f5b93d8 100644 --- a/src/server/BlockFactory.cpp +++ b/src/server/BlockFactory.cpp @@ -122,8 +122,8 @@ BlockFactory::load_lv2_plugins() // Build an array of port type nodes for checking compatibility typedef std::vector< SharedPtr<LilvNode> > Types; Types types; - for (unsigned t = PortType::AUDIO; t <= PortType::ATOM; ++t) { - const Raul::URI& uri(PortType((PortType::Symbol)t).uri()); + for (unsigned t = PortType::ID::AUDIO; t <= PortType::ID::ATOM; ++t) { + const Raul::URI& uri(PortType((PortType::ID)t).uri()); types.push_back(SharedPtr<LilvNode>( lilv_new_uri(_world->lilv_world(), uri.c_str()), lilv_node_free)); |