diff options
author | David Robillard <d@drobilla.net> | 2010-11-30 23:01:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-30 23:01:30 +0000 |
commit | 27c3aec25ca4eefa88df64b63d50ed4451bec190 (patch) | |
tree | 9ec17eeb9ad9080cca2f3a350afe31d696c68638 /src/client/DeprecatedLoader.cpp | |
parent | d2f94aa4fd3472ff86fea5abe7a58d15a90d3264 (diff) | |
download | ingen-27c3aec25ca4eefa88df64b63d50ed4451bec190.tar.gz ingen-27c3aec25ca4eefa88df64b63d50ed4451bec190.tar.bz2 ingen-27c3aec25ca4eefa88df64b63d50ed4451bec190.zip |
Consistent naming for URI quarks.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2678 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/DeprecatedLoader.cpp')
-rw-r--r-- | src/client/DeprecatedLoader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/DeprecatedLoader.cpp b/src/client/DeprecatedLoader.cpp index a3e13db5..a1e76314 100644 --- a/src/client/DeprecatedLoader.cpp +++ b/src/client/DeprecatedLoader.cpp @@ -458,10 +458,10 @@ DeprecatedLoader::load_node(const Path& parent, xmlDocPtr doc, const xmlNodePtr props.insert(make_pair(_uris->rdf_type, _uris->lv2_ControlPort)); props.insert(make_pair(_uris->rdf_type, _uris->lv2_OutputPort)); } else if (plugin_label == "midi_input") { - props.insert(make_pair(_uris->rdf_type, _uris->lv2ev_EventPort)); + props.insert(make_pair(_uris->rdf_type, _uris->ev_EventPort)); props.insert(make_pair(_uris->rdf_type, _uris->lv2_InputPort)); } else if (plugin_label == "midi_output" ) { - props.insert(make_pair(_uris->rdf_type, _uris->lv2ev_EventPort)); + props.insert(make_pair(_uris->rdf_type, _uris->ev_EventPort)); props.insert(make_pair(_uris->rdf_type, _uris->lv2_OutputPort)); } else { is_port = false; |