summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/processor.h4
-rw-r--r--libs/ardour/processor.cc1
2 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/ardour/processor.h b/libs/ardour/ardour/processor.h
index e95bd57adf..1e65bc58bd 100644
--- a/libs/ardour/ardour/processor.h
+++ b/libs/ardour/ardour/processor.h
@@ -95,9 +95,6 @@ class Processor : public SessionObject, public Automatable, public Latent
XMLNode& get_state (void);
int set_state (const XMLNode&, int version);
- void *get_gui () const { return _gui; }
- void set_gui (void *p) { _gui = p; }
-
void set_pre_fader (bool);
PBD::Signal0<void> ActiveChanged;
@@ -110,7 +107,6 @@ protected:
bool _configured;
ChanCount _configured_input;
ChanCount _configured_output;
- void* _gui; /* generic, we don't know or care what this is */
bool _display_to_user;
bool _pre_fader;
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index c75a7720e0..0bea376fc9 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -66,7 +66,6 @@ Processor::Processor(Session& session, const string& name)
, _active(false)
, _next_ab_is_active(false)
, _configured(false)
- , _gui(0)
, _display_to_user (true)
, _pre_fader (false)
{