summaryrefslogtreecommitdiffstats
path: root/src/client/ClientStore.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-28 18:20:58 +0000
committerDavid Robillard <d@drobilla.net>2009-05-28 18:20:58 +0000
commit939a16ee56b4ba58246a98afda203f714d7d17c8 (patch)
tree47cd29428bc7d277e9956c4488217fb9d756caac /src/client/ClientStore.cpp
parent8935cca8706d74f39d3cca43b4df3ab48799b06a (diff)
downloadingen-939a16ee56b4ba58246a98afda203f714d7d17c8.tar.gz
ingen-939a16ee56b4ba58246a98afda203f714d7d17c8.tar.bz2
ingen-939a16ee56b4ba58246a98afda203f714d7d17c8.zip
Load symbol from LV2 data if available.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2030 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ClientStore.cpp')
-rw-r--r--src/client/ClientStore.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index e4cd604e..0079010c 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -278,8 +278,7 @@ ClientStore::put(const URI& uri, const Resource::Properties& properties)
if (!(is_path || is_meta)) {
const URI& type_uri = properties.find("rdf:type")->second.get_uri();
- SharedPtr<PluginModel> p(new PluginModel(uri, type_uri));
- p->set_properties(properties);
+ SharedPtr<PluginModel> p(new PluginModel(uri, type_uri, properties));
add_plugin(p);
return;
}