diff options
Diffstat (limited to 'src/client/ClientStore.cpp')
-rw-r--r-- | src/client/ClientStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index d8f36302..6725d961 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -419,11 +419,11 @@ ClientStore::set_property(const URI& subject_uri, const URI& predicate, const At } void -ClientStore::activity(const Path& path) +ClientStore::activity(const Path& path, const Atom& value) { SharedPtr<PortModel> port = PtrCast<PortModel>(_object(path)); if (port) - port->signal_activity().emit(); + port->signal_activity().emit(value); else LOG(error) << "Activity for non-existent port " << path << endl; } |