]> git.sesse.net Git - vlc/commitdiff
* Two small bugs in the OSX intf
authorDerk-Jan Hartman <hartman@videolan.org>
Fri, 28 Jan 2005 00:44:31 +0000 (00:44 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Fri, 28 Jan 2005 00:44:31 +0000 (00:44 +0000)
modules/gui/macosx/playlist.m
modules/gui/macosx/playlistinfo.m

index fdb15f89065b76ee7ae08f077bad86f584df3f93..6c2225b699524feeb6b4cbdfe32d3bafa95c45d6 100644 (file)
@@ -724,7 +724,7 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
         o_current_name = [NSString stringWithUTF8String:
             p_item->pp_children[i_current]->input.psz_name];
         psz_temp = vlc_input_item_GetInfo( &p_item->input ,
-                                  _("Meta-information"),_("Author") );
+                                  _("Meta-information"),_("Artist") );
         o_current_author = [NSString stringWithUTF8String: psz_temp];
         free( psz_temp);
         vlc_mutex_unlock( &p_playlist->object_lock );
index f9ce5ada4ee524c403bea91507bd217431aaee59..6b6d61023354d2694c4acc67d9bfa05fe239968b 100644 (file)
     if( psz_temp )
     {
         [o_author_txt setStringValue: [NSString stringWithUTF8String: psz_temp]];
+        free( psz_temp );
     }
 
-    free( psz_temp );
-
     [[VLCInfoTreeItem rootItem] refresh];
     [o_outline_view reloadData];