summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_list.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-04-20 01:24:25 +0000
committerCarl Hetherington <carl@carlh.net>2011-04-20 01:24:25 +0000
commitd22cd939a371b24e5e452963c98682a62ed8b6cf (patch)
tree936a0daa635f9870c23201243926aa2714568154 /libs/ardour/automation_list.cc
parentee697bef967d457cb65e2161c2a71cbeac4d16ba (diff)
Remove unused NascentInfo::is_touch member.
git-svn-id: svn://localhost/ardour2/branches/3.0@9386 d708f5d6-7413-0410-9779-e7cbd77b26cf
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);