summaryrefslogtreecommitdiff
path: root/libs/ardour/region.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-07-16 19:37:46 +0000
committerCarl Hetherington <carl@carlh.net>2010-07-16 19:37:46 +0000
commitfaefa809ad37e5e4c9e729dd52723c7a15aa7237 (patch)
tree68e8cbca4c52dd9b5cd020659d3a5440bb7ef563 /libs/ardour/region.cc
parentc9b121803c3ad85c2dbb160f67a630e262bcedf5 (diff)
Remove unused full parameter to Region::state
git-svn-id: svn://localhost/ardour2/branches/3.0@7428 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/region.cc')
-rw-r--r--libs/ardour/region.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc
index a4de9fc8b7..6dc090ce3c 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -1140,7 +1140,7 @@ Region::set_layer (layer_t l)
}
XMLNode&
-Region::state (bool full)
+Region::state ()
{
XMLNode *node = new XMLNode ("Region");
char buf[64];
@@ -1191,7 +1191,7 @@ Region::state (bool full)
node->add_property (buf2, buf);
}
- if (full && _extra_xml) {
+ if (_extra_xml) {
node->add_child_copy (*_extra_xml);
}
@@ -1201,7 +1201,7 @@ Region::state (bool full)
XMLNode&
Region::get_state ()
{
- return state (true);
+ return state ();
}
int