summaryrefslogtreecommitdiffstats
path: root/src/client/ClientStore.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-28 15:57:14 +0000
committerDavid Robillard <d@drobilla.net>2009-05-28 15:57:14 +0000
commitee3bba21b4f2ea2e0e03f93bc9eded6681b9b482 (patch)
tree185987a38a9737a72840d41c5d5bb525f3d49aea /src/client/ClientStore.cpp
parenteae3b1c1e100fc1b705a2d664cffae4aa5802568 (diff)
downloadingen-ee3bba21b4f2ea2e0e03f93bc9eded6681b9b482.tar.gz
ingen-ee3bba21b4f2ea2e0e03f93bc9eded6681b9b482.tar.bz2
ingen-ee3bba21b4f2ea2e0e03f93bc9eded6681b9b482.zip
Create objects via SetMetadataEvent.
Fix subpatch creation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2025 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ClientStore.cpp')
-rw-r--r--src/client/ClientStore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 12bbdaf9..a8fe7c51 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -289,8 +289,8 @@ ClientStore::put(const URI& uri, const Resource::Properties& properties)
SharedPtr<ObjectModel> obj = PtrCast<ObjectModel>(object(path));
if (obj) {
- cerr << "OBJECT EXISTS " << path << endl;
obj->set_properties(properties);
+ return;
}
bool is_patch, is_node, is_port, is_output;