prepare Pin Management GUI

We need to store a pointer in the backend to allow to share the Proxy
between Mixer and Editor-Mixer.
This commit is contained in:
Robin Gareus 2016-03-27 21:34:32 +02:00
parent c444105710
commit 30e45fc28f
2 changed files with 8 additions and 7 deletions

View file

@ -64,6 +64,7 @@ Processor::Processor(Session& session, const string& name)
, _pre_fader (false)
, _ui_pointer (0)
, _window_proxy (0)
, _pinmgr_proxy (0)
, _owner (0)
{
}
@ -81,6 +82,7 @@ Processor::Processor (const Processor& other)
, _pre_fader (false)
, _ui_pointer (0)
, _window_proxy (0)
, _pinmgr_proxy (0)
, _owner (0)
{
}
@ -277,12 +279,6 @@ Processor::set_ui (void* p)
_ui_pointer = p;
}
void
Processor::set_window_proxy (ProcessorWindowProxy* wp)
{
_window_proxy = wp;
}
void
Processor::set_owner (SessionObject* o)
{