Magellan Linux

Contents of /trunk/amarok/patches/amarok-1.4.5-magnatune.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 206 - (show annotations) (download)
Mon May 21 22:24:41 2007 UTC (17 years ago) by niro
File size: 873 byte(s)
-added new patches

1 Index: amarok-1.4.5/amarok/src/magnatunebrowser/magnatunealbumdownloader.cpp
2 ===================================================================
3 --- amarok-1.4.5/amarok/src/magnatunebrowser/magnatunealbumdownloader.cpp (revision 633568)
4 +++ amarok-1.4.5/amarok/src/magnatunebrowser/magnatunealbumdownloader.cpp (revision 633677)
5 @@ -89,8 +89,8 @@
6
7 //ok, now we have the .zip file downloaded. All we need is to unpack it to the desired location and add it to the collection.
8
9 - QString unzipString = "unzip \""+m_tempDir.name() + m_currentAlbumFileName + "\" -d \"" + m_currentAlbumUnpackLocation + "\" &";
10 + QString unzipString = "unzip "+ KProcess::quote( m_tempDir.name() + m_currentAlbumFileName) + " -d " +KProcess::quote( m_currentAlbumUnpackLocation ) + " &";
11
12 debug() << "unpacking: " << unzipString << endl;
13
14 system( unzipString.ascii() );