summaryrefslogtreecommitdiffstats
path: root/src/serialisation/Serialiser.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-12 23:47:14 +0000
committerDavid Robillard <d@drobilla.net>2012-04-12 23:47:14 +0000
commitf74b7279cf959a3b8f943e89db350af432ae78a8 (patch)
tree607d19ca9015dd7c02b5b9d00b0ea7c4becb1fe4 /src/serialisation/Serialiser.cpp
parentb9ee86cf97f9ba8f6139c83f57b8d5848e7f90e4 (diff)
downloadingen-f74b7279cf959a3b8f943e89db350af432ae78a8.tar.gz
ingen-f74b7279cf959a3b8f943e89db350af432ae78a8.tar.bz2
ingen-f74b7279cf959a3b8f943e89db350af432ae78a8.zip
Use URI defines from LV2 headers where possible.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4175 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/Serialiser.cpp')
-rw-r--r--src/serialisation/Serialiser.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/serialisation/Serialiser.cpp b/src/serialisation/Serialiser.cpp
index c7e487c4..38c47dc3 100644
--- a/src/serialisation/Serialiser.cpp
+++ b/src/serialisation/Serialiser.cpp
@@ -48,8 +48,6 @@
#define LOG(s) s << "[Serialiser] "
-#define NS_LV2 "http://lv2plug.in/ns/lv2core#"
-
using namespace std;
using namespace Raul;
using namespace Sord;
@@ -431,12 +429,12 @@ Serialiser::Impl::serialise_patch(SharedPtr<const Patch> patch,
const Sord::Node port_id = path_rdf_node(p->path());
// Ensure lv2:name always exists so Patch is a valid LV2 plugin
- if (p->properties().find(NS_LV2 "name") == p->properties().end())
- p->set_property(NS_LV2 "name",
+ if (p->properties().find(LV2_CORE__name) == p->properties().end())
+ p->set_property(LV2_CORE__name,
_world.forge().alloc(p->symbol().c_str()));
_model->add_statement(patch_id,
- Sord::URI(world, NS_LV2 "port"),
+ Sord::URI(world, LV2_CORE__port),
port_id);
serialise_port(p, Resource::INTERNAL, port_id);
}