Ticket #22644: patch-modules-gui-macosx-simple_prefs.diff
File patch-modules-gui-macosx-simple_prefs.diff, 620 bytes (added by kalen@…, 15 years ago) |
---|
-
modules/gui/macosx/simple_prefs.m
old new 422 422 - (void)setupButton: (NSButton *)object forBoolValue: (const char *)name 423 423 { 424 424 [object setState: config_GetInt( p_intf, name )]; 425 [object setToolTip: [NSString stringWithUTF8String: config_GetLabel( p_intf, name )]]; 425 if( config_GetLabel( p_intf, name ) ) 426 [object setToolTip: [NSString stringWithUTF8String: config_GetLabel( p_intf, name )]]; 426 427 } 427 428 428 429 - (void)setupField:(NSTextField *)o_object forOption:(const char *)psz_option