]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/commands/cmd_add_item.cpp
Skins2: no need to redefine WINNT_VERSION
[vlc] / modules / gui / skins2 / commands / cmd_add_item.cpp
index b31a733ef005716400d283a24790f56428855959..877461b6b3fe76d4e8c594a8c18adf48226acd77 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include <vlc/vlc.h>
-#include "cmd_add_item.hpp"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
+#include <vlc_common.h>
+#include <vlc_playlist.h>
+#include <vlc_url.h>
+#include "cmd_add_item.hpp"
 
 void CmdAddItem::execute()
 {
     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
-    if( pPlaylist == NULL )
-    {
+    if( !pPlaylist )
         return;
-    }
 
-    if( m_playNow )
-    {
-        // Enqueue and play the item
-        playlist_Add( pPlaylist, m_name.c_str(),m_name.c_str(),
-                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
-    }
-    else
-    {
-        // Enqueue the item only
-        playlist_Add( pPlaylist, m_name.c_str(), m_name.c_str(),
-                      PLAYLIST_APPEND, PLAYLIST_END );
-    }
+    char* psz_uri = make_URI(  m_name.c_str(), NULL );
+    if( !psz_uri )
+        return;
+
+    playlist_Add( pPlaylist, psz_uri, NULL,
+                  m_playNow ? PLAYLIST_APPEND | PLAYLIST_GO : PLAYLIST_APPEND,
+                  PLAYLIST_END, true, false );
+
+    free( psz_uri );
 }