]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/playlist.m
macosx: compilation fix for the 10.4u SDK and removal of a hack
[vlc] / modules / gui / macosx / playlist.m
index a4d3f4f75b55aac5283c51f7178af579c5df78bc..5dad4232cebfdd276e66f79fca47ce0d4d0ac883 100644 (file)
     [o_mi_sort_name setTitle: _NS("Sort Node by Name")];
     [o_mi_sort_author setTitle: _NS("Sort Node by Author")];
     [o_mi_services setTitle: _NS("Services discovery")];
+    [o_mm_mi_services setTitle: _NS("Services discovery")];
     [o_status_field setStringValue: _NS("No items in the playlist")];
 
     [o_search_field setToolTip: _NS("Search in Playlist")];
 
     pt = [o_outline_view convertPoint: [o_event locationInWindow]
                                                  fromView: nil];
-    NSInteger row = [o_outline_view rowAtPoint:pt];
+    int row = [o_outline_view rowAtPoint:pt];
     if( row != -1 )
         [o_outline_view selectRowIndexes:[NSIndexSet indexSetWithIndex:row] byExtendingSelection:NO];