summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc/osc_select_observer.h
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2016-06-09 18:33:00 -0700
committerLen Ovens <len@ovenwerks.net>2016-06-09 18:33:00 -0700
commitf65713c4262cbbf2fd531173d33b091e38cc2f27 (patch)
treecfb49780efc838c77c51d407abfe5dd9d56ec0de /libs/surfaces/osc/osc_select_observer.h
parent1f62dca53622dc2533381fcbaccdba26e7fbf688 (diff)
OSC: Finished Select send levels
Diffstat (limited to 'libs/surfaces/osc/osc_select_observer.h')
-rw-r--r--libs/surfaces/osc/osc_select_observer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/surfaces/osc/osc_select_observer.h b/libs/surfaces/osc/osc_select_observer.h
index 3d64957577..54e8a4a4d6 100644
--- a/libs/surfaces/osc/osc_select_observer.h
+++ b/libs/surfaces/osc/osc_select_observer.h
@@ -58,17 +58,17 @@ class OSCSelectObserver
void name_changed (const PBD::PropertyChange& what_changed);
- void send_change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
- void send_monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
- void send_gain_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
- void send_trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
+ void change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
+ void monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
+ void gain_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
+ void trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
// sends stuff
void send_init (void);
void send_end (void);
void send_restart (int);
- void send_gain (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
+ void send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
void send_enable (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
- void send_rename (std::string path, uint32_t id, std::string name);
+ void send_name (std::string path, uint32_t id, std::string name);
std::string set_path (std::string path, uint32_t id);
void clear_strip (std::string path, float val);
};