mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
add notification of what was changed in Stateful::post_set() call
git-svn-id: svn://localhost/ardour2/branches/3.0@8306 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0945b96986
commit
e178fb2e50
2 changed files with 3 additions and 3 deletions
|
|
@ -101,7 +101,7 @@ class Stateful {
|
||||||
of property values after either a PropertyList or XML
|
of property values after either a PropertyList or XML
|
||||||
driven property change.
|
driven property change.
|
||||||
*/
|
*/
|
||||||
virtual void post_set () { };
|
virtual void post_set (const PropertyChange&) { };
|
||||||
|
|
||||||
XMLNode *_extra_xml;
|
XMLNode *_extra_xml;
|
||||||
XMLNode *_instant_xml;
|
XMLNode *_instant_xml;
|
||||||
|
|
|
||||||
|
|
@ -193,7 +193,7 @@ Stateful::set_values (XMLNode const & node)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
post_set ();
|
post_set (c);
|
||||||
|
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
@ -227,7 +227,7 @@ Stateful::apply_changes (const PropertyList& property_list)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
post_set ();
|
post_set (c);
|
||||||
|
|
||||||
send_change (c);
|
send_change (c);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue