diff --git a/simgear/props/tiedpropertylist.hxx b/simgear/props/tiedpropertylist.hxx index 4e597af0..731de456 100644 --- a/simgear/props/tiedpropertylist.hxx +++ b/simgear/props/tiedpropertylist.hxx @@ -134,6 +134,13 @@ public: for (std::vector::iterator it=begin() ; it < end(); it++ ) (*it)->setAttribute(attr, state); } + + void fireValueChanged() + { + for (const auto& p : *this) { + p->fireValueChanged(); + } + } private: SGPropertyNode_ptr _root; };