]> git.sesse.net Git - vlc/commitdiff
skins2: uri-encoded mrl required for drag&drop
authorErwan Tulou <erwan10@videolan.org>
Wed, 26 Aug 2009 17:12:06 +0000 (19:12 +0200)
committerErwan Tulou <erwan10@videolan.org>
Wed, 26 Aug 2009 17:41:02 +0000 (19:41 +0200)
modules/gui/skins2/commands/cmd_add_item.cpp

index f90c188a1ed1d5f3bf7aac53667756dbcf161e89..90ceb5ff25053115894139f247bfcb8296929790 100644 (file)
 
 #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;
+
+    char* psz_uri = make_URI(  m_name.c_str() );
+    if( !psz_uri )
         return;
-    }
 
     if( m_playNow )
     {
         // Enqueue and play the item
-        playlist_Add( pPlaylist, m_name.c_str(), NULL,
+        playlist_Add( pPlaylist, psz_uri, NULL,
                       PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true,
                       false );
     }
     else
     {
         // Enqueue the item only
-        playlist_Add( pPlaylist, m_name.c_str(), NULL,
+        playlist_Add( pPlaylist, psz_uri, NULL,
                       PLAYLIST_APPEND, PLAYLIST_END, true, false );
     }
+    free( psz_uri );
 }