From 73fd60543dd46527acdbee4e22cc9d517937a7df Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sat, 18 Jan 2020 11:14:41 -0500 Subject: [PATCH] Amending commit 1176b61 to avoid compatiblity break in macros using EQ --- src/effects/Equalization.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/effects/Equalization.h b/src/effects/Equalization.h index d8f9273df..09c91f1a1 100644 --- a/src/effects/Equalization.h +++ b/src/effects/Equalization.h @@ -26,8 +26,10 @@ ComponentInterfaceSymbol{ XO("Equalization") } #define GRAPHIC_EQ_PLUGIN_SYMBOL \ ComponentInterfaceSymbol{ wxT("Graphic EQ"), XO("Graphic EQ") } +// "Filter Curve EQ" in the user-facing string, but preserve the old +// internal string #define FILTER_CURVE_PLUGIN_SYMBOL \ -ComponentInterfaceSymbol{ wxT("Filter Curve EQ"), XO("Filter Curve EQ") } +ComponentInterfaceSymbol{ wxT("Filter Curve"), XO("Filter Curve EQ") } // Flags to specialise the UI const int kEqOptionGraphic =1;