summaryrefslogtreecommitdiff
path: root/libs/pbd/property_list.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-25 17:31:33 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-25 17:31:33 +0000
commit7b2975244165b4ffd1dcf4080c1be4c8dcbc6708 (patch)
treeb3010f51f7c3fa0534c0813e51bbeef13200f6a0 /libs/pbd/property_list.cc
parent167c439002bde2b20399d733cd5d38d3674668c3 (diff)
Rename various things in the property system.
git-svn-id: svn://localhost/ardour2/branches/3.0@7681 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/property_list.cc')
-rw-r--r--libs/pbd/property_list.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/property_list.cc b/libs/pbd/property_list.cc
index ffe1170dd5..5c0de4bacf 100644
--- a/libs/pbd/property_list.cc
+++ b/libs/pbd/property_list.cc
@@ -39,13 +39,13 @@ PropertyList::~PropertyList ()
}
void
-PropertyList::add_history_state (XMLNode* history_node)
+PropertyList::get_changes (XMLNode* history_node)
{
for (const_iterator i = begin(); i != end(); ++i) {
DEBUG_TRACE (DEBUG::Properties, string_compose ("Add before/after to %1 for %2\n",
history_node->name(),
i->second->property_name()));
- i->second->add_history_state (history_node);
+ i->second->get_change (history_node);
}
}