summaryrefslogtreecommitdiffstats
path: root/src/client/ObjectModel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/ObjectModel.hpp')
-rw-r--r--src/client/ObjectModel.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/ObjectModel.hpp b/src/client/ObjectModel.hpp
index e30ef2b2..8c7c631d 100644
--- a/src/client/ObjectModel.hpp
+++ b/src/client/ObjectModel.hpp
@@ -62,8 +62,10 @@ public:
signal_property.emit(key, value);
}
- virtual void set_variable(const Raul::URI& key, const Raul::Atom& value)
- { _variables[key] = value; signal_variable.emit(key, value); }
+ virtual void set_variable(const Raul::URI& key, const Raul::Atom& value) {
+ _variables.insert(make_pair(key, value));
+ signal_variable.emit(key, value);
+ }
const Properties& variables() const { return _variables; }
Properties& variables() { return _variables; }