summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-11-09 00:57:31 +0000
committerDavid Robillard <d@drobilla.net>2009-11-09 00:57:31 +0000
commite51ceb95d5b90942fbc14a7070d786e089ce3186 (patch)
treea12fc2cfac25ae8ec707f5a606d4b4425853c164 /libs
parentc7c15fe1bd8c7ffe2275aeb4c6938132b3f909b8 (diff)
Add metadata file with DOAP and LV2 Host Info information.
git-svn-id: svn://localhost/ardour2/branches/3.0@6043 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 8b3d832204..509fb0a999 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -1057,9 +1057,12 @@ Session::set_auto_loop_location (Location* location)
auto_loop_end_changed_connection.disconnect();
auto_loop_changed_connection.disconnect();
- auto_loop_start_changed_connection = location->start_changed.connect (mem_fun (this, &Session::auto_loop_changed));
- auto_loop_end_changed_connection = location->end_changed.connect (mem_fun (this, &Session::auto_loop_changed));
- auto_loop_changed_connection = location->changed.connect (mem_fun (this, &Session::auto_loop_changed));
+ auto_loop_start_changed_connection = location->start_changed.connect (
+ mem_fun (this, &Session::auto_loop_changed));
+ auto_loop_end_changed_connection = location->end_changed.connect (
+ mem_fun (this, &Session::auto_loop_changed));
+ auto_loop_changed_connection = location->changed.connect (
+ mem_fun (this, &Session::auto_loop_changed));
location->set_auto_loop (true, this);