summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_profile_manager.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2013-05-26 20:25:27 +0300
committerSakari Bergen <sakari.bergen@beatwaves.net>2013-05-26 20:25:27 +0300
commit0a364fd9910d999b6954a8ccf54fcdae7c7c1f21 (patch)
treecd6ca6496912e9e809fc767d80adc0cb83f99ddf /libs/ardour/ardour/export_profile_manager.h
parent13f51112c965677a4925bf03e8cc3413e10a572b (diff)
Remove special handling of session range in export. Fixes things when the session range is renamed.
Diffstat (limited to 'libs/ardour/ardour/export_profile_manager.h')
-rw-r--r--libs/ardour/ardour/export_profile_manager.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libs/ardour/ardour/export_profile_manager.h b/libs/ardour/ardour/export_profile_manager.h
index 82b32fb032..424e0fe163 100644
--- a/libs/ardour/ardour/export_profile_manager.h
+++ b/libs/ardour/ardour/export_profile_manager.h
@@ -122,16 +122,13 @@ class ExportProfileManager
TimespanListPtr timespans;
TimeFormat time_format;
- boost::shared_ptr<Location> session_range;
boost::shared_ptr<Location> selection_range;
boost::shared_ptr<LocationList> ranges;
- TimespanState (boost::shared_ptr<Location> session_range,
- boost::shared_ptr<Location> selection_range,
+ TimespanState (boost::shared_ptr<Location> selection_range,
boost::shared_ptr<LocationList> ranges)
: timespans (new TimespanList ())
, time_format (Timecode)
- , session_range (session_range)
, selection_range (selection_range)
, ranges (ranges)
{}
@@ -157,7 +154,6 @@ class ExportProfileManager
void update_ranges ();
- boost::shared_ptr<Location> session_range;
boost::shared_ptr<Location> selection_range;
boost::shared_ptr<LocationList> ranges;