]> git.sesse.net Git - vlc/commitdiff
* another thing that wasn't committed yet.
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 26 Feb 2004 14:40:29 +0000 (14:40 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 26 Feb 2004 14:40:29 +0000 (14:40 +0000)
  - Fix Playlist Save. Can only do m3u atm.

modules/gui/macosx/playlist.m

index 4a42d9ec9209b088d4e5bd91eba5f55ea40c68be..0e2d2146bab2d18fdcbf60aaab837cd7996705ec 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.m: MacOS X interface module
  *****************************************************************************
  * Copyright (C) 2002-2004 VideoLAN
- * $Id: playlist.m,v 1.57 2004/02/08 20:08:28 hartman Exp $
+ * $Id: playlist.m,v 1.58 2004/02/26 14:40:29 hartman Exp $
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Derk-Jan Hartman <hartman at videolan dot org>
@@ -297,7 +297,7 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
     if( [o_save_panel runModalForDirectory: nil
             file: o_name] == NSOKButton )
     {
-        playlist_Export( p_playlist, [[o_save_panel filename] fileSystemRepresentation], "m3u" );
+        playlist_Export( p_playlist, [[o_save_panel filename] fileSystemRepresentation], "export-m3u" );
     }
 
 }