[MacPorts] #22644: VLC preference dialog not working

MacPorts noreply at macports.org
Wed Feb 17 23:52:08 PST 2010


#22644: VLC preference dialog not working
-----------------------------------+----------------------------------------
 Reporter:  vaulse@…               |       Owner:  mnick@…           
     Type:  defect                 |      Status:  new               
 Priority:  Normal                 |   Milestone:                    
Component:  ports                  |     Version:  1.8.1             
 Keywords:                         |        Port:  vlc               
-----------------------------------+----------------------------------------

Comment(by kalen@…):

 First of all, sorry for my bad english.
 Added patch corrects error showing VLC Prefernces by inserting simple
 condition in file
 modules/gui/macosx/simple_prefs.m
 Error was in void
 - (void)setupButton: (NSButton *)object forBoolValue: (const char *)name
 in line
 [object setToolTip: [NSString stringWithUTF8String: config_GetLabel(
 p_intf, name )]];
 Void produced error when config_GetLabel( p_intf, name ) returns NULL. You
 may see it in system log by opening Console.
 Corrected string is there:
    if( config_GetLabel( p_intf, name ) )
        [object setToolTip: [NSString stringWithUTF8String:
 config_GetLabel( p_intf, name )]];

-- 
Ticket URL: <http://trac.macports.org/ticket/22644#comment:6>
MacPorts <http://www.macports.org/>
Ports system for Mac OS


More information about the macports-tickets mailing list