From c9a25fcc6150290790457f837355735b513b7239 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 May 2009 01:38:34 +0000 Subject: Fix QNAMEs being serialised as URIs. Remove vestigial variable stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2017 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/Engine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/engine/Engine.cpp') diff --git a/src/engine/Engine.cpp b/src/engine/Engine.cpp index 4d697b5e..120433fb 100644 --- a/src/engine/Engine.cpp +++ b/src/engine/Engine.cpp @@ -190,9 +190,9 @@ Engine::activate(size_t parallelism) if (!root_patch) { root_patch = new PatchImpl(*this, "", 1, NULL, _audio_driver->sample_rate(), _audio_driver->buffer_size(), 1); - root_patch->add_property("rdf:type", Raul::Atom(Raul::Atom::URI, "ingen:Patch")); - root_patch->add_property("rdf:type", Raul::Atom(Raul::Atom::URI, "ingen:Node")); - root_patch->set_property("ingen:polyphony", Raul::Atom(int32_t(1))); + root_patch->meta().set_property("rdf:type", Raul::Atom(Raul::Atom::URI, "ingen:Patch")); + root_patch->meta().set_property("ingen:polyphony", Raul::Atom(int32_t(1))); + root_patch->set_property("rdf:type", Raul::Atom(Raul::Atom::URI, "ingen:Node")); root_patch->activate(); _world->store->add(root_patch); root_patch->compiled_patch(root_patch->compile()); -- cgit v1.2.1