summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc/osc_cue_observer.cc
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-05-10 09:56:45 -0700
committerLen Ovens <len@ovenwerks.net>2017-05-10 09:56:45 -0700
commita76ee7a4d88de5c6712b7add7b3ea66cc65efe47 (patch)
treef77f0101ae71a4057490a66ccfe4a071a61ad19d /libs/surfaces/osc/osc_cue_observer.cc
parentc8f805ef7c1c455ddd455ca6afc343afbba19db9 (diff)
OSC: bind should be boost::bind
Diffstat (limited to 'libs/surfaces/osc/osc_cue_observer.cc')
-rw-r--r--libs/surfaces/osc/osc_cue_observer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc_cue_observer.cc b/libs/surfaces/osc/osc_cue_observer.cc
index c846145ebc..40f97d7c3b 100644
--- a/libs/surfaces/osc/osc_cue_observer.cc
+++ b/libs/surfaces/osc/osc_cue_observer.cc
@@ -43,11 +43,11 @@ OSCCueObserver::OSCCueObserver (boost::shared_ptr<Stripable> s, std::vector<boos
_strip->PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, 0), OSC::instance());
name_changed (ARDOUR::Properties::name, 0);
- _strip->mute_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCCueObserver::send_change_message, this, X_("/cue/mute"), 0, _strip->mute_control()), OSC::instance());
+ _strip->mute_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_change_message, this, X_("/cue/mute"), 0, _strip->mute_control()), OSC::instance());
send_change_message ("/cue/mute", 0, _strip->mute_control());
gain_timeout.push_back (0);
- _strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCCueObserver::send_gain_message, this, 0, _strip->gain_control()), OSC::instance());
+ _strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_gain_message, this, 0, _strip->gain_control()), OSC::instance());
send_gain_message (0, _strip->gain_control());
send_init ();