[vlc-devel] commit: macosx intf: Fix bug in equalizer (Derk-Jan Hartman )
git version control
git at videolan.org
Fri May 29 13:21:58 CEST 2009
vlc | branch: 1.0-bugfix | Derk-Jan Hartman <hartman at videolan.org> | Fri May 29 13:10:23 2009 +0200| [c543a40de86224b961a089d0a17374867f835da4] | committer: Derk-Jan Hartman
macosx intf: Fix bug in equalizer
Introduced by [ca17039cd8dbaff98d0d4f08b94d3f3efa92af98]
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c543a40de86224b961a089d0a17374867f835da4
---
modules/gui/macosx/equalizer.m | 25 ++++++++++++-------------
1 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/modules/gui/macosx/equalizer.m b/modules/gui/macosx/equalizer.m
index 51b4aaa..0c726b1 100644
--- a/modules/gui/macosx/equalizer.m
+++ b/modules/gui/macosx/equalizer.m
@@ -239,18 +239,17 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
if( p_object == NULL )
p_object = (vlc_object_t *)pl_Hold( p_intf );
- NSString *preset;
const char *psz_values;
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band1 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band2 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band3 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band4 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band5 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band6 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band7 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band8 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band9 floatValue] ];
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, [o_slider_band10 floatValue] ];
+ NSString *preset = [NSString stringWithFormat:@"%.1f", [o_slider_band1 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band2 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band3 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band4 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band5 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band6 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band7 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band8 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band9 floatValue] ];
+ preset = [preset stringByAppendingFormat:@"%.1f", [o_slider_band10 floatValue] ];
psz_values = [preset UTF8String];
var_SetString( p_object, "equalizer-bands", psz_values );
@@ -278,11 +277,11 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
var_SetString( p_object , "equalizer-preset" , preset_list[[sender indexOfSelectedItem]] );
- NSString *preset;
+ NSString *preset = @"";
const char *psz_values;
for( i = 0; i < 10; i++ )
{
- preset = [NSString stringWithFormat:@"%@ %.1f", preset, eqz_preset_10b[[sender indexOfSelectedItem]]->f_amp[i] ];
+ preset = [preset stringByAppendingFormat:@"%.1f ", eqz_preset_10b[[sender indexOfSelectedItem]]->f_amp[i] ];
}
psz_values = [preset UTF8String];
var_SetString( p_object, "equalizer-bands", psz_values );
More information about the vlc-devel
mailing list