]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/vars/playlist.hpp
* src/extras/libc.c: provide iconv facility in the core (vlc_iconv_open(), vlc_iconv...
[vlc] / modules / gui / skins2 / vars / playlist.hpp
index 2a781e874ee9a10d811f335a8a6c4d8493d3db04..3852828e2c11a97530500661036162b84fd6fef9 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.hpp
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: playlist.hpp,v 1.1 2004/01/03 23:31:34 asmax Exp $
+ * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  *          Olivier Teulière <ipkiss@via.ecp.fr>
@@ -27,7 +27,6 @@
 
 #include "../utils/var_list.hpp"
 
-
 /// Variable for VLC playlist
 class Playlist: public VarList
 {
@@ -35,9 +34,6 @@ class Playlist: public VarList
         Playlist( intf_thread_t *pIntf );
         virtual ~Playlist();
 
-        /// Add a pointer on a string in the list
-        virtual void add( const UStringPtr &rcString );
-
         /// Remove the selected elements from the list
         virtual void delSelected();
 
@@ -51,7 +47,7 @@ class Playlist: public VarList
         /// VLC playlist object
         playlist_t *m_pPlaylist;
         /// Iconv handle
-        iconv_t iconvHandle;
+        vlc_iconv_t iconvHandle;
 
         /// Build the list from the VLC playlist
         void buildList();