summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_list.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2009-03-07 09:42:39 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2009-03-07 09:42:39 +0000
commite09c51251f1742ac5c61966b5dd8c5f61c567f69 (patch)
treebcdaebca662905230391efdf6726cd25dde050b0 /libs/ardour/automation_list.cc
parentbb20bcc7b6af0e63fc2a9b909b27765ffe5014e1 (diff)
Fix compiler warnings
git-svn-id: svn://localhost/ardour2/branches/3.0@4744 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/automation_list.cc')
-rw-r--r--libs/ardour/automation_list.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/automation_list.cc b/libs/ardour/automation_list.cc
index ed804d1b2c..08cf69308f 100644
--- a/libs/ardour/automation_list.cc
+++ b/libs/ardour/automation_list.cc
@@ -64,7 +64,8 @@ AutomationList::AutomationList (Evoral::Parameter id)
}
AutomationList::AutomationList (const AutomationList& other)
- : ControlList(other)
+ : StatefulDestructible()
+ , ControlList(other)
{
_style = other._style;
_state = other._state;