diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ingen/Resource.hpp | 2 | ||||
-rw-r--r-- | include/ingen/client/ObjectModel.hpp | 4 | ||||
-rw-r--r-- | include/ingen/client/PortModel.hpp | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/ingen/Resource.hpp b/include/ingen/Resource.hpp index 605aa97d..7a697967 100644 --- a/include/ingen/Resource.hpp +++ b/include/ingen/Resource.hpp @@ -116,7 +116,7 @@ public: virtual const Properties& properties() const = 0; virtual Properties& properties() = 0; virtual const Raul::Atom& get_property(const Raul::URI& uri) const = 0; - virtual Raul::Atom& set_property(const Raul::URI& uri, + virtual const Raul::Atom& set_property(const Raul::URI& uri, const Raul::Atom& value, Graph ctx=DEFAULT) = 0; virtual void add_property(const Raul::URI& uri, diff --git a/include/ingen/client/ObjectModel.hpp b/include/ingen/client/ObjectModel.hpp index d3959f4f..1f446bb0 100644 --- a/include/ingen/client/ObjectModel.hpp +++ b/include/ingen/client/ObjectModel.hpp @@ -57,8 +57,8 @@ public: const Raul::Atom& get_property(const Raul::URI& key) const; - Raul::Atom& set_property(const Raul::URI& key, const Raul::Atom& value, - Resource::Graph ctx); + const Raul::Atom& set_property(const Raul::URI& key, const Raul::Atom& value, + Resource::Graph ctx); void add_property(const Raul::URI& key, const Raul::Atom& value); const Raul::Path& path() const { return _path; } diff --git a/include/ingen/client/PortModel.hpp b/include/ingen/client/PortModel.hpp index 0786e7fc..7fd4d746 100644 --- a/include/ingen/client/PortModel.hpp +++ b/include/ingen/client/PortModel.hpp @@ -63,9 +63,9 @@ public: inline bool operator==(const PortModel& pm) const { return (path() == pm.path()); } - Raul::Atom& set_property(const Raul::URI& uri, - const Raul::Atom& value, - Resource::Graph ctx); + const Raul::Atom& set_property(const Raul::URI& uri, + const Raul::Atom& value, + Resource::Graph ctx); inline void value(const Raul::Atom& val) { if (val != _current_val) { |