13
0

OSC: remove unused function.

This commit is contained in:
Len Ovens 2017-10-18 15:29:52 -07:00
parent f87e996013
commit dabe7474b3
2 changed files with 1 additions and 11 deletions

View File

@ -851,12 +851,3 @@ OSCSelectObserver::eq_restart(int x)
eq_end();
eq_init();
}
string
OSCSelectObserver::set_path (string path, uint32_t id)
{
if (feedback[2]) {
path = string_compose ("%1/%2", path, id);
}
return path;
}

View File

@ -48,7 +48,6 @@ class OSCSelectObserver
void eq_restart (int);
void clear_observer (void);
void refresh_strip (bool force);
void no_strip ();
private:
boost::shared_ptr<ARDOUR::Stripable> _strip;
@ -99,7 +98,7 @@ class OSCSelectObserver
void send_enable (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc);
void eq_init (void);
void eq_end (void);
std::string set_path (std::string path, uint32_t id);
void no_strip ();
};
#endif /* __osc_oscselectobserver_h__ */