From 7d92ad6ac70ca570ada7355cb0b84f19bd391027 Mon Sep 17 00:00:00 2001 From: Markus Schmidt Date: Mon, 9 Nov 2009 22:06:37 +0000 Subject: [PATCH] + Equalizer: remove unused variables (cherry picked from commit a45db777d5b645a0ce8add2c88d2f3c8940862f3) --- plugins/ladspa_effect/calf/calf/modules.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/ladspa_effect/calf/calf/modules.h b/plugins/ladspa_effect/calf/calf/modules.h index 19075725d..e8c4a5e22 100644 --- a/plugins/ladspa_effect/calf/calf/modules.h +++ b/plugins/ladspa_effect/calf/calf/modules.h @@ -1267,13 +1267,9 @@ public: /// Equalizer 5 Band by Markus Schmidt (based on Krzysztof's filters) class equalizer5band_audio_module: public audio_module, public frequency_response_line_graph { private: - float hp_mode_old, hp_freq_old; - float lp_mode_old, lp_freq_old; float ls_level_old, ls_freq_old; float hs_level_old, hs_freq_old; float p_level_old[3], p_freq_old[3], p_q_old[3]; - float hp_mode_old1, hp_freq_old1, hp_active_old1; - float lp_mode_old1, lp_freq_old1, lp_active_old1; float ls_level_old1, ls_freq_old1, ls_active_old1; float hs_level_old1, hs_freq_old1, hs_active_old1; float p_level_old1[3], p_freq_old1[3], p_q_old1[3], p_active_old1[3];