browserutilities/downloadmgr/DownloadMgrUiLib/Src/CDownloadMgrUiUserInteractions.cpp
changeset 26 cb62a4f66ebe
parent 25 0ed94ceaa377
child 36 c711bdda59f4
--- a/browserutilities/downloadmgr/DownloadMgrUiLib/Src/CDownloadMgrUiUserInteractions.cpp	Thu Dec 17 09:20:16 2009 +0200
+++ b/browserutilities/downloadmgr/DownloadMgrUiLib/Src/CDownloadMgrUiUserInteractions.cpp	Thu Jan 07 13:31:38 2010 +0200
@@ -15,13 +15,11 @@
 *
 */
 
-
-
 // INCLUDE FILES
-#include    "cdownloadmgruiuserinteractions.h"
+#include    <cdownloadmgruiuserinteractions.h>
 #include    "CUserInteractionsUtils.h"
-#include    "cdownloadmgruidownloadslist.h"
-#include    "cdownloadmgruilibregistry.h"
+#include    <cdownloadmgruidownloadslist.h>
+#include    <cdownloadmgruilibregistry.h>
 #include    "UserInteractionsEventHandler.h"
 #include    "AsyncEventHandlerArray.h"
 #include    "UiLibLogger.h"
@@ -457,15 +455,14 @@
         
         downloadCnt = iRegistryModel.DownloadCount();
 
-        TBool isProgressive (EFalse);
+       
         if ( resp == EAknSoftkeyYes || resp == EAknSoftkeyOk )
 		    {
             for ( TInt i = downloadCnt - 1; i >=0; --i )
 		        {
 	            RHttpDownload* dl = downloads.At(i); //current download
-                dl->GetBoolAttribute( EDlAttrProgressive, isProgressive );
                 dl->GetBoolAttribute( EDlAttrPausable , isPausable );
-                if (!( isProgressive || isPausable ) ) // delete only no-PDL downloads and Non pausable Downloads
+                if (!( isPausable ) ) // delete only Non pausable Downloads
     			    {
                     // Delete not attached downloads.
     	            dl->Delete(); // Return value ignored.