Remove old libardour API for plugin UIs

This commit is contained in:
Robin Gareus
2017-07-01 23:42:28 +02:00
parent 3c6ab7aca3
commit b2f3523ab6
2 changed files with 0 additions and 9 deletions

View File

@@ -118,9 +118,6 @@ class LIBARDOUR_API Processor : public SessionObject, public Automatable, public
PBD::Signal0<void> BypassableChanged;
PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;
void set_ui (void*);
void* get_ui () const { return _ui_pointer; }
ProcessorWindowProxy * window_proxy () const { return _window_proxy; }
void set_window_proxy (ProcessorWindowProxy* wp) { _window_proxy = wp; }

View File

@@ -271,12 +271,6 @@ Processor::set_pre_fader (bool p)
_pre_fader = p;
}
void
Processor::set_ui (void* p)
{
_ui_pointer = p;
}
void
Processor::set_owner (SessionObject* o)
{