13
0

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:
Paul Davis 2010-12-20 16:10:58 +00:00
parent 0945b96986
commit e178fb2e50
2 changed files with 3 additions and 3 deletions

View File

@ -101,7 +101,7 @@ class Stateful {
of property values after either a PropertyList or XML
driven property change.
*/
virtual void post_set () { };
virtual void post_set (const PropertyChange&) { };
XMLNode *_extra_xml;
XMLNode *_instant_xml;

View File

@ -193,7 +193,7 @@ Stateful::set_values (XMLNode const & node)
}
}
post_set ();
post_set (c);
return c;
}
@ -227,7 +227,7 @@ Stateful::apply_changes (const PropertyList& property_list)
}
}
post_set ();
post_set (c);
send_change (c);