summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/region.h
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-10-01 11:13:41 +1000
committernick_m <mainsbridge@gmail.com>2016-10-01 11:13:41 +1000
commitbc38f2c48969be068b93525bdbcce6c1ff4e1d7c (patch)
tree68a46c224b949185280ea131615c4b8cabda7537 /libs/ardour/ardour/region.h
parent9bd86c2869fe02eda7ed6094504910356aaac734 (diff)
Region pulse is no longer a property.
Diffstat (limited to 'libs/ardour/ardour/region.h')
-rw-r--r--libs/ardour/ardour/region.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/region.h b/libs/ardour/ardour/region.h
index 9dc51e2d4a..fc14e98cb8 100644
--- a/libs/ardour/ardour/region.h
+++ b/libs/ardour/ardour/region.h
@@ -58,7 +58,6 @@ namespace Properties {
LIBARDOUR_API extern PBD::PropertyDescriptor<framecnt_t> length;
LIBARDOUR_API extern PBD::PropertyDescriptor<framepos_t> position;
LIBARDOUR_API extern PBD::PropertyDescriptor<double> beat;
- LIBARDOUR_API extern PBD::PropertyDescriptor<double> pulse;
LIBARDOUR_API extern PBD::PropertyDescriptor<framecnt_t> sync_position;
LIBARDOUR_API extern PBD::PropertyDescriptor<layer_t> layer;
LIBARDOUR_API extern PBD::PropertyDescriptor<framepos_t> ancestral_start;
@@ -378,10 +377,11 @@ class LIBARDOUR_API Region
PBD::Property<framecnt_t> _length;
PBD::Property<framepos_t> _position;
PBD::Property<double> _beat;
- PBD::Property<double> _pulse;
/** Sync position relative to the start of our file */
PBD::Property<framepos_t> _sync_position;
+ double _pulse;
+
SourceList _sources;
/** Used when timefx are applied, so we can always use the original source */
SourceList _master_sources;