[vlc-devel] commit: Remove unused variable. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Fri Aug 1 18:16:30 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Aug 1 09:03:24 2008 -0700| [42fef87c4f281f304b7d56c0cbfde0b7d1912ab6] | committer: Jean-Baptiste Kempf
Remove unused variable.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=42fef87c4f281f304b7d56c0cbfde0b7d1912ab6
---
modules/gui/qt4/components/extended_panels.cpp | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index 018a697..1d71c52 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -856,7 +856,7 @@ Equalizer::~Equalizer()
/* Write down initial values */
void Equalizer::updateUIFromCore()
{
- char *psz_af;//, *psz_bands; Don't use it ?
+ char *psz_af;
float f_preamp;
int i_preset;
@@ -867,7 +867,6 @@ 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" );
f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
i_preset = presetsComboBox->findData( QVariant(
var_GetString( p_aout, "equalizer-preset" ) ) );
@@ -878,7 +877,6 @@ 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" );
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