summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/ardour/types.h22
-rw-r--r--libs/ardour/enums.cc12
2 files changed, 1 insertions, 33 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index bcabf32b4e..3adfaf5c94 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -157,27 +157,7 @@ namespace ARDOUR {
TrimAutomation,
PhaseAutomation,
MonitoringAutomation,
-#if 1 // XXX remove me.
- /* These really need to go away, they're "well known" PluginAutomation.
- * Abusing the AutomationType (range, steps, etc) to indentify controls is wrong.
- * Luckily it's only used by mackie/strip.cc in Mixbus.
- */
- EQGain,
- EQFrequency,
- EQQ,
- EQShape,
- EQEnable,
- EQHPF,
- EQLPF,
- EQFilterEnable,
- CompThreshold,
- CompSpeed,
- CompMode,
- CompMakeup,
- CompRedux,
- CompEnable,
- BusSendLevel, //really GainAutomation
-#endif
+ BusSendLevel,
BusSendEnable
};
diff --git a/libs/ardour/enums.cc b/libs/ardour/enums.cc
index 748d725c09..bd7c2dd39b 100644
--- a/libs/ardour/enums.cc
+++ b/libs/ardour/enums.cc
@@ -169,18 +169,6 @@ setup_enum_writer ()
REGISTER_ENUM (TrimAutomation);
REGISTER_ENUM (PhaseAutomation);
REGISTER_ENUM (MonitoringAutomation);
- REGISTER_ENUM (EQGain);
- REGISTER_ENUM (EQFrequency);
- REGISTER_ENUM (EQQ);
- REGISTER_ENUM (EQShape);
- REGISTER_ENUM (EQHPF);
- REGISTER_ENUM (EQEnable);
- REGISTER_ENUM (CompThreshold);
- REGISTER_ENUM (CompSpeed);
- REGISTER_ENUM (CompMode);
- REGISTER_ENUM (CompMakeup);
- REGISTER_ENUM (CompRedux);
- REGISTER_ENUM (CompEnable);
REGISTER_ENUM (BusSendLevel);
REGISTER_ENUM (BusSendEnable);
REGISTER (_AutomationType);