Changeset 5ceb0f293b338279011f5aa7cafa8b86888e3768

Show
Ignore:
Timestamp:
01/01/08 15:54:06 (8 months ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1199199246 +0000
git-parent:

[8be68853f19e3b764cd9e416cf4bb2025729779c]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1199199246 +0000
Message:

macosx: forgot a corner case in the previous commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/macosx/intf.m

    r8be6885 r5ceb0f2  
    15351535        NSString *o_temp; 
    15361536        vlc_object_yield( p_input ); 
    1537         o_temp = [NSString stringWithUTF8String: 
    1538                   p_playlist->status.p_item->p_input->psz_name]; 
     1537        if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) ) 
     1538            o_temp = [NSString stringWithUTF8String:  
     1539                input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )]; 
     1540        else 
     1541            o_temp = [NSString stringWithUTF8String: 
     1542                p_playlist->status.p_item->p_input->psz_name]; 
    15391543        [self setScrollField: o_temp stopAfter:-1]; 
    15401544        vlc_object_release( p_input );