Remove Automation Types that should never have existed.

This commit is contained in:
Robin Gareus 2017-06-23 17:37:19 +02:00
parent 66a3dd7ded
commit e765d0b3bb
2 changed files with 1 additions and 33 deletions

View file

@ -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
};

View file

@ -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);