summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-06 14:03:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-06 14:03:24 -0400
commitcf9706974c52f6116fcef9bfd02013e7b7150788 (patch)
treebb3e93dd020d032dd110ef6bf50d1a033a03f632 /libs/surfaces/osc
parentda7d7f950233f109f82f7e7ea5c62f81ef3d7bbb (diff)
a few post-rebase cleanups
Diffstat (limited to 'libs/surfaces/osc')
-rw-r--r--libs/surfaces/osc/osc.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index b199b64f84..f9d4f7dc57 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -249,8 +249,8 @@ OSC::start ()
periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &OSC::periodic));
periodic_timeout->attach (main_loop()->get_context());
- // catch current editor mixer changes for GUI_select mode
- session->EditorMixerChanged.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::gui_selection_changed, this), this);
+ // catch changes to selection for GUI_select mode
+ StripableSelectionChanged.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::gui_selection_changed, this), this);
// catch track reordering
// receive routes added
@@ -2081,7 +2081,7 @@ OSC::strip_gui_select (int ssid, int yn, lo_message msg)
sur->expand_enable = false;
boost::shared_ptr<Stripable> s = get_strip (ssid, lo_message_get_source (msg));
if (s) {
- session->set_stripable_selection (s);
+ SetStripableSelection (s);
} else {
route_send_fail ("select", ssid, 0, lo_message_get_source (msg));
}