summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-11-17 19:23:57 +0000
committerDavid Robillard <d@drobilla.net>2012-11-17 19:23:57 +0000
commitaf282195f9ced2947752154245d2ca13c670bef1 (patch)
tree16c65793d80f143b4777c2a12375f42cef836425 /src/client
parent441b30875e250c70b2ccef957894c327b2319e75 (diff)
downloadingen-af282195f9ced2947752154245d2ca13c670bef1.tar.gz
ingen-af282195f9ced2947752154245d2ca13c670bef1.tar.bz2
ingen-af282195f9ced2947752154245d2ca13c670bef1.zip
Don't complain about ingen:activity property for unknown object since it's transient anyway.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4821 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 20928d33..71e28c09 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -365,11 +365,12 @@ ClientStore::set_property(const Raul::URI& subject_uri,
}
} else {
SharedPtr<PluginModel> plugin = _plugin(subject_uri);
- if (plugin)
+ if (plugin) {
plugin->set_property(predicate, value);
- else
+ } else if (predicate != _uris.ingen_activity) {
_log.warn(Raul::fmt("Property <%1%> for unknown object %2%\n")
% predicate.c_str() % subject_uri.c_str());
+ }
}
}