browserutilities/downloadmgr/DownloadMgrServEng/Inc/HttpStorage.h
changeset 65 5bfc169077b2
parent 38 6297cdf66332
child 94 919f36ff910f
--- a/browserutilities/downloadmgr/DownloadMgrServEng/Inc/HttpStorage.h	Tue Feb 02 00:56:45 2010 +0200
+++ b/browserutilities/downloadmgr/DownloadMgrServEng/Inc/HttpStorage.h	Fri Mar 19 09:52:28 2010 +0200
@@ -212,7 +212,7 @@
         HBufC*  DestFilename()const { return iDestFilename; };
         HBufC*  DdFileName()const { return iDdFilename; };
         TBool   DestFNameSet()const { return iDestFNameSet; };
-        TInt32  RemovableDest()const { return iRemovableStatus; };
+        TBool   RemovableDest()const { return iRemovableDest; };
         TBool   ProgressiveDownload()const { return iProgressiveDownload; }
         TInt32  Length()const { return iLength; };
         TInt32  DownloadedSize()const { return iDownloadedSize; };
@@ -221,7 +221,7 @@
         
         void    SetLength( TInt32 aLength ){ iLength = aLength; };
         void    SetDownloadedSize( TInt32 aSize ){ iDownloadedSize = aSize; iBufferedSize = aSize; };
-        void    SetRemovableDest( TInt32 aRemovable ){ iRemovableStatus = aRemovable; };
+        void    SetRemovableDest( TBool aRemovable ){ iRemovableDest = aRemovable; };
         void    SetLocalFilenameL(const TDesC16& aValue);
         void    SetPartialContentLength( TInt32 aLength ){ iPartialLength = aLength; };
         void    SetMoDownloadedSize( TInt32 aMoSize ){ iMoDownloadedSize = aMoSize ;};
@@ -279,8 +279,7 @@
 
         TBool   iProgressiveDownload;   // EDlAttrProgressive
         
-        TInt32  iRemovableStatus;
-        
+        TBool   iRemovableDest;
         HBufC*  iDestFilename;          // EDlAttrDestFilename
         TBool   iDestFNameSet;          // iDestFilename is set by client app -> 
                                         // do not delete it in Reset()