summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-27 21:34:32 +0200
committerRobin Gareus <robin@gareus.org>2016-03-27 21:34:32 +0200
commit30e45fc28f080da62bbb511b7920c931d6508a1f (patch)
treea4d25426361944d6c6f6bce2fa788d9ffdb51f76 /libs/ardour/processor.cc
parentc444105710cc540d3d6a14c9cf710f1e14fdbe26 (diff)
prepare Pin Management GUI
We need to store a pointer in the backend to allow to share the Proxy between Mixer and Editor-Mixer.
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 315fb6662e..e55d31ce52 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -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)
{
}
@@ -278,12 +280,6 @@ Processor::set_ui (void* p)
}
void
-Processor::set_window_proxy (ProcessorWindowProxy* wp)
-{
- _window_proxy = wp;
-}
-
-void
Processor::set_owner (SessionObject* o)
{
_owner = o;