summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/location.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-09 22:23:32 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-09 22:23:32 +0000
commit69c9e2296c1436e3959b6702110c03738d2a5549 (patch)
tree29e463916e001d7b0f1a1a820cdc1424f59a1361 /libs/ardour/ardour/location.h
parent78986385e17b82a6704c8792fb21a42cd86add9a (diff)
Fix up state save/load of location lock/glue settings.
git-svn-id: svn://localhost/ardour2/branches/3.0@7579 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/location.h')
-rw-r--r--libs/ardour/ardour/location.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/location.h b/libs/ardour/ardour/location.h
index 429fac177c..f3c322e2d4 100644
--- a/libs/ardour/ardour/location.h
+++ b/libs/ardour/ardour/location.h
@@ -58,8 +58,8 @@ class Location : public SessionHandleRef, public PBD::StatefulDestructible
Location* operator= (const Location& other);
bool locked() const { return _locked; }
- void lock() { _locked = true; LockChanged (this); }
- void unlock() { _locked = false; LockChanged (this); }
+ void lock ();
+ void unlock ();
nframes64_t start() const { return _start; }
nframes64_t end() const { return _end; }