summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorPaul Hedderly <paul+git@mjr.org>2017-08-21 15:08:22 +0100
committerRobin Gareus <robin@gareus.org>2017-08-21 16:23:23 +0200
commit18060e597e536e8ff53fc423360d48d802f76f23 (patch)
tree5e67846a9e4d11e2fcf32f8d8dd42ae317f2f907 /libs/surfaces
parentf0387f07bd4fa04f69c365e72b4ab5c1f97fc083 (diff)
prh: Small fix to /cue/send/enable feedback string
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/osc/osc_cue_observer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/osc/osc_cue_observer.cc b/libs/surfaces/osc/osc_cue_observer.cc
index 7d027b4f18..b23733f04e 100644
--- a/libs/surfaces/osc/osc_cue_observer.cc
+++ b/libs/surfaces/osc/osc_cue_observer.cc
@@ -139,7 +139,7 @@ OSCCueObserver::send_init()
}
boost::shared_ptr<Processor> proc = boost::dynamic_pointer_cast<Processor> (send);
- proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send_enable"), i + 1, proc->enabled()), OSC::instance());
+ proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send/enable"), i + 1, proc->enabled()), OSC::instance());
send_enabled_message (X_("/cue/send/enable"), i + 1, proc->enabled());
}
}