OSC: removed unused _namespace_root variable.

This commit is contained in:
Len Ovens
2016-04-19 16:13:18 -07:00
parent d32333f4ef
commit 622ba89dd9
2 changed files with 0 additions and 3 deletions

View File

@@ -81,7 +81,6 @@ OSC::OSC (Session& s, uint32_t port)
, _shutdown (false)
, _osc_server (0)
, _osc_unix_server (0)
, _namespace_root ("/ardour")
, _send_route_changes (true)
, _debugmode (Off)
, gui (0)

View File

@@ -80,7 +80,6 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
int set_feedback (bool yn);
bool get_feedback () const;
void set_namespace_root (std::string);
int start ();
int stop ();
@@ -114,7 +113,6 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
lo_server _osc_unix_server;
std::string _osc_unix_socket_path;
std::string _osc_url_file;
std::string _namespace_root;
bool _send_route_changes;
OSCDebugMode _debugmode;