[vlc-devel] commit: Why are this variable unused ? ( commented out for the moment as it memleak) ( Rémi Duraffort )
git version control
git at videolan.org
Fri Aug 1 17:22:29 CEST 2008
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri Aug 1 17:14:45 2008 +0200| [ab1e2b524cb535d8c2ef1a7914f359d679d83136] | committer: Rémi Duraffort
Why are this variable unused ? (commented out for the moment as it memleak)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ab1e2b524cb535d8c2ef1a7914f359d679d83136
---
modules/gui/qt4/components/extended_panels.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index ab08880..9e1d30e 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -853,7 +853,7 @@ Equalizer::~Equalizer()
/* Write down initial values */
void Equalizer::updateUIFromCore()
{
- char *psz_af, *psz_bands;
+ char *psz_af;//, *psz_bands; Don't use it ?
float f_preamp;
int i_preset;
@@ -864,7 +864,7 @@ void Equalizer::updateUIFromCore()
psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
if( var_GetBool( p_aout, "equalizer-2pass" ) )
ui.eq2PassCheck->setChecked( true );
- psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
+// psz_bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
i_preset = presetsComboBox->findData( QVariant(
var_GetString( p_aout, "equalizer-preset" ) ) );
@@ -875,7 +875,7 @@ void Equalizer::updateUIFromCore()
psz_af = config_GetPsz( p_intf, "audio-filter" );
if( config_GetInt( p_intf, "equalizer-2pass" ) )
ui.eq2PassCheck->setChecked( true );
- psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
+// psz_bands = config_GetPsz( p_intf, "equalizer-bands" );
f_preamp = config_GetFloat( p_intf, "equalizer-preamp" );
i_preset = presetsComboBox->findData( QVariant(
config_GetPsz( p_intf, "equalizer-preset" ) ) );
More information about the vlc-devel
mailing list