diff options
author | David Robillard <d@drobilla.net> | 2008-11-28 23:51:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-28 23:51:25 +0000 |
commit | 6b04f4fd3a84457eed53132ac42b6b8f44b289d6 (patch) | |
tree | e0844ab77b732f437a1100faf462d27fe86b7966 /src/client | |
parent | 41f370378810f4d1d3b03db1730edbe21bb44397 (diff) | |
download | ingen-6b04f4fd3a84457eed53132ac42b6b8f44b289d6.tar.gz ingen-6b04f4fd3a84457eed53132ac42b6b8f44b289d6.tar.bz2 ingen-6b04f4fd3a84457eed53132ac42b6b8f44b289d6.zip |
Sane ontology for internaals.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1818 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/DeprecatedLoader.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/client/DeprecatedLoader.cpp b/src/client/DeprecatedLoader.cpp index 7dcd3853..82a5e578 100644 --- a/src/client/DeprecatedLoader.cpp +++ b/src/client/DeprecatedLoader.cpp @@ -38,6 +38,7 @@ #include "DeprecatedLoader.hpp" #define NS_INGEN "http://drobilla.net/ns/ingen#" +#define NS_INTERNALS "http://drobilla.net/ns/ingen-internals#" using namespace std; @@ -500,13 +501,13 @@ DeprecatedLoader::load_node(const Path& parent, xmlDocPtr doc, const xmlNodePtr } else { if (plugin_label == "note_in") { - plugin_uri = NS_INGEN "note_node"; + plugin_uri = NS_INTERNALS "Note"; } else if (plugin_label == "control_input") { - plugin_uri = NS_INGEN "control_node"; + plugin_uri = NS_INTERNALS "Controller"; } else if (plugin_label == "transport") { - plugin_uri = NS_INGEN "transport_node"; + plugin_uri = NS_INTERNALS "Transport"; } else if (plugin_label == "trigger_in") { - plugin_uri = NS_INGEN "trigger_node"; + plugin_uri = NS_INTERNALS "Trigger"; } if (plugin_uri != "") |