]> 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 7b9a97cbdcccc31687ac6294aa5183e2d12153a9..877461b6b3fe76d4e8c594a8c18adf48226acd77 100644 (file)
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#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(), NULL,
-                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true,
-                      false );
-    }
-    else
-    {
-        // Enqueue the item only
-        playlist_Add( pPlaylist, m_name.c_str(), NULL,
-                      PLAYLIST_APPEND, PLAYLIST_END, true, false );
-    }
+    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 );
 }