summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2019-02-06 09:54:13 -0600
committerBen Loftis <ben@harrisonconsoles.com>2019-02-12 11:35:48 -0600
commit688bd284583e1b1184ddf7826e49822ac032b098 (patch)
tree13991d9aaebffe5b6c8c915e1b3ba604a62b4f2d /libs/ardour/ardour/session.h
parent22deebb42fa32e618ddfb9fbdaa93449a57b1717 (diff)
Session-range behavior (libardour part)
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 36f323a6d4..36ca4b4774 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -468,8 +468,8 @@ public:
void set_auto_punch_location (Location *);
void set_auto_loop_location (Location *);
void set_session_extents (samplepos_t start, samplepos_t end);
- bool end_is_free () const { return _session_range_end_is_free; }
- void set_end_is_free (bool);
+ bool session_range_is_free () const { return _session_range_is_free; }
+ void set_session_range_is_free (bool);
pframes_t get_block_size () const { return current_block_size; }
samplecnt_t worst_output_latency () const { return _worst_output_latency; }
@@ -1245,7 +1245,7 @@ private:
samplepos_t _transport_sample;
gint _seek_counter;
Location* _session_range_location; ///< session range, or 0 if there is nothing in the session yet
- bool _session_range_end_is_free;
+ bool _session_range_is_free;
bool _silent;
samplecnt_t _remaining_latency_preroll;