summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/region.h
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-11-09 04:51:19 +1100
committernick_m <mainsbridge@gmail.com>2016-11-11 03:37:08 +1100
commitd9dea0a3aaabeec001ef3f430f11ecce7aa94f9f (patch)
tree0cac50e6c109b2c76c9218acfdaef1ec09becd08 /libs/ardour/ardour/region.h
parent3816ee4e92bb42cf249e5b032f555e49039b7f50 (diff)
rename Region pos_beats -> quarter_note
Diffstat (limited to 'libs/ardour/ardour/region.h')
-rw-r--r--libs/ardour/ardour/region.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/region.h b/libs/ardour/ardour/region.h
index 866f489037..a01ef703f3 100644
--- a/libs/ardour/ardour/region.h
+++ b/libs/ardour/ardour/region.h
@@ -178,9 +178,9 @@ class LIBARDOUR_API Region
/* meter-based beat at the region position */
double beat () const { return _beat; }
void set_beat (double beat) { _beat = beat; }
- /* quarter-note beats at the region position (for use with Evoral::Beats) */
- double pos_beats () const { return _pos_beats; }
- void set_pos_beats (double pb) { _pos_beats = pb; }
+ /* quarter-note at the region position */
+ double quarter_note () const { return _quarter_note; }
+ void set_quarter_note (double qn) { _quarter_note = qn; }
void suspend_property_changes ();
@@ -382,7 +382,7 @@ class LIBARDOUR_API Region
/** Sync position relative to the start of our file */
PBD::Property<framepos_t> _sync_position;
- double _pos_beats;
+ double _quarter_note;
SourceList _sources;
/** Used when timefx are applied, so we can always use the original source */