summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/location.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-14 18:13:37 +0000
committerDavid Robillard <d@drobilla.net>2010-12-14 18:13:37 +0000
commit4b861e603972148a29638cade51cee27ebc997a2 (patch)
tree1ff879960fa5abfece3c560a0562b92189d8adf9 /libs/ardour/ardour/location.h
parent341c409fa1d77cf1259f044a3045dc3250b7c030 (diff)
Rename libmusictime libtimecode (consistent with already used namespace "Timecode").
Move BBT_Time to libtimecode. git-svn-id: svn://localhost/ardour2/branches/3.0@8271 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/location.h')
-rw-r--r--libs/ardour/ardour/location.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/ardour/location.h b/libs/ardour/ardour/location.h
index c2da2c04cb..9639d9a34d 100644
--- a/libs/ardour/ardour/location.h
+++ b/libs/ardour/ardour/location.h
@@ -115,14 +115,14 @@ class Location : public SessionHandleRef, public PBD::StatefulDestructible
void recompute_frames_from_bbt ();
private:
- std::string _name;
- framepos_t _start;
- BBT_Time _bbt_start;
- framepos_t _end;
- BBT_Time _bbt_end;
- Flags _flags;
- bool _locked;
- PositionLockStyle _position_lock_style;
+ std::string _name;
+ framepos_t _start;
+ Timecode::BBT_Time _bbt_start;
+ framepos_t _end;
+ Timecode::BBT_Time _bbt_end;
+ Flags _flags;
+ bool _locked;
+ PositionLockStyle _position_lock_style;
void set_mark (bool yn);
bool set_flag_internal (bool yn, Flags flag);