summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-24 11:54:44 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:45 -0400
commit28afaebdc4e25602dfc2d9dc73be9029fe445884 (patch)
tree09df8b50fd9066aaf00b4a4e3eb62a7d1cc0e182 /libs/ardour/session_state.cc
parent983a8f3f3c2a92b1a4781504087a05b488056465 (diff)
fix SNAFU in which Stripable::rec_enable_control() was incorrectly defined as ::recenable_control()
Make Mackie support code use the Stripable to access the rec-enable control while we're here
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 55258a3ead..54cb87b82f 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -3464,7 +3464,7 @@ Session::controllable_by_descriptor (const ControllableDescriptor& desc)
break;
case ControllableDescriptor::Recenable:
- c = s->recenable_control ();
+ c = s->rec_enable_control ();
break;
case ControllableDescriptor::PanDirection: