]> git.sesse.net Git - vlc/commitdiff
Revert 4ce6c3f34b0807c7ee8db8739bdbdb9773d42f56. Fixes drag and drop on my system...
authorAntoine Cellerier <dionoea@videolan.org>
Wed, 2 Apr 2008 20:10:18 +0000 (22:10 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 2 Apr 2008 20:10:18 +0000 (22:10 +0200)
modules/gui/qt4/main_interface.cpp

index 6290c1f99a8b47d7e576d22649a8d0599ad26f5d..6d773ab9feaa4b9b6d6649337eed89a8c799f1b2 100644 (file)
@@ -1095,7 +1095,7 @@ void MainInterface::dropEvent(QDropEvent *event)
      bool first = true;
      foreach( QUrl url, mimeData->urls() )
      {
-        QString s = "\"" + url.toString() + "\"";
+        QString s = url.toString();
         if( s.length() > 0 ) {
             playlist_Add( THEPL, qtu(s), NULL,
                           PLAYLIST_APPEND | (first ? PLAYLIST_GO:0),