summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/region.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-04-11 19:49:29 +0200
committerRobin Gareus <robin@gareus.org>2013-04-11 19:49:48 +0200
commit66ee2c8e597ca9a07d614cf56b4002e5303e3645 (patch)
tree9131785c3f5d4b419f127f9f6726b820d8de4fae /libs/ardour/ardour/region.h
parentb7c617b0578ec7e8d75dcd604c316459d6ac0708 (diff)
enable videotimeline by default
Diffstat (limited to 'libs/ardour/ardour/region.h')
-rw-r--r--libs/ardour/ardour/region.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/ardour/ardour/region.h b/libs/ardour/ardour/region.h
index eaa23cc8f6..3ee829ed12 100644
--- a/libs/ardour/ardour/region.h
+++ b/libs/ardour/ardour/region.h
@@ -45,9 +45,7 @@ namespace Properties {
extern PBD::PropertyDescriptor<bool> muted;
extern PBD::PropertyDescriptor<bool> opaque;
extern PBD::PropertyDescriptor<bool> locked;
-#ifdef WITH_VIDEOTIMELINE
extern PBD::PropertyDescriptor<bool> video_locked;
-#endif
extern PBD::PropertyDescriptor<bool> automatic;
extern PBD::PropertyDescriptor<bool> whole_file;
extern PBD::PropertyDescriptor<bool> import;
@@ -166,9 +164,7 @@ class Region
bool opaque () const { return _opaque; }
bool locked () const { return _locked; }
bool position_locked () const { return _position_locked; }
-#ifdef WITH_VIDEOTIMELINE
bool video_locked () const { return _video_locked; }
-#endif
bool valid_transients () const { return _valid_transients; }
bool automatic () const { return _automatic; }
bool whole_file () const { return _whole_file; }
@@ -246,9 +242,7 @@ class Region
void set_automatic (bool yn);
void set_opaque (bool yn);
void set_locked (bool yn);
-#ifdef WITH_VIDEOTIMELINE
void set_video_locked (bool yn);
-#endif
void set_position_locked (bool yn);
int apply (Filter &, Progress* progress = 0);
@@ -401,9 +395,7 @@ class Region
PBD::Property<bool> _muted;
PBD::Property<bool> _opaque;
PBD::Property<bool> _locked;
-#ifdef WITH_VIDEOTIMELINE
PBD::Property<bool> _video_locked;
-#endif
PBD::Property<bool> _automatic;
PBD::Property<bool> _whole_file;
PBD::Property<bool> _import;