summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_list.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/automation_list.cc')
-rw-r--r--libs/ardour/automation_list.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/automation_list.cc b/libs/ardour/automation_list.cc
index 1cda99d763..b76fa0bb4b 100644
--- a/libs/ardour/automation_list.cc
+++ b/libs/ardour/automation_list.cc
@@ -184,7 +184,7 @@ AutomationList::set_automation_state (AutoState s)
if (_state == Write) {
Glib::Mutex::Lock lm (ControlList::_lock);
- nascent.push_back (new NascentInfo (false));
+ nascent.push_back (new NascentInfo ());
}
automation_state_changed (s); /* EMIT SIGNAL */
}
@@ -204,7 +204,7 @@ AutomationList::start_touch (double when)
{
if (_state == Touch) {
Glib::Mutex::Lock lm (ControlList::_lock);
- nascent.push_back (new NascentInfo (true, when));
+ nascent.push_back (new NascentInfo (when));
}
g_atomic_int_set (&_touching, 1);