From 7c678d0713ca0ce3ff6a4a0b8e675627c4fcf539 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 Sep 2010 12:19:41 +0000 Subject: Set up session range location correctly from 2.X sessions. Fixes #3435. git-svn-id: svn://localhost/ardour2/branches/3.0@7750 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/location.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/ardour/location.cc') diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc index ecb694ad93..ddf95b1649 100644 --- a/libs/ardour/location.cc +++ b/libs/ardour/location.cc @@ -742,7 +742,7 @@ Locations::get_state () LocationList::iterator iter; Glib::Mutex::Lock lm (lock); - for (iter = locations.begin(); iter != locations.end(); ++iter) { + for (iter = locations.begin(); iter != locations.end(); ++iter) { node->add_child_nocopy ((*iter)->get_state ()); } @@ -791,10 +791,10 @@ Locations::set_state (const XMLNode& node, int version) string::size_type const c = v.find_first_of (','); string const s = v.substr (0, c); if (s == X_("IsStart")) { - session_range_location->set_start (loc->start()); + session_range_location->set_start (loc->start(), true); add = false; } else if (s == X_("IsEnd")) { - session_range_location->set_end (loc->start()); + session_range_location->set_end (loc->start(), true); add = false; } -- cgit v1.2.3