diff -r 79859ed3eea9 -r 919f36ff910f codhandler/codeng/src/DownloadDataClient.cpp --- a/codhandler/codeng/src/DownloadDataClient.cpp Tue Aug 31 16:17:46 2010 +0300 +++ b/codhandler/codeng/src/DownloadDataClient.cpp Wed Sep 01 12:28:30 2010 +0100 @@ -17,7 +17,6 @@ * */ - // INCLUDE FILES #include @@ -27,10 +26,8 @@ // ================= CONSTANTS ======================= - // ================= MEMBER FUNCTIONS ======================= - // --------------------------------------------------------- // CMediaDataClient::NewL() // --------------------------------------------------------- @@ -108,7 +105,7 @@ bytes += sizeof(iRedirected); bytes += iDestFilename->Size(); bytes += sizeof(iDownloadedSize); - bytes += sizeof(iDesRemovable); + bytes += sizeof(iDesRemovableStatus); bytes += sizeof(iLastErrorId); bytes += sizeof(iGlobalErrorId); bytes += sizeof(iPausable); @@ -307,10 +304,10 @@ // CMediaDataClient::SetDesRemovable() // --------------------------------------------------------- // -void CMediaDataClient::SetDesRemovable( TBool aDesRemovable ) - { - iDesRemovable = aDesRemovable; - } +void CMediaDataClient::SetDesRemovable( TInt32 aDesRemovable ) + { + iDesRemovableStatus = aDesRemovable; + } // --------------------------------------------------------- // CMediaDataClient::SetLastErrorId() @@ -502,7 +499,7 @@ aStream.WriteInt32L(iDownloadedSize); // iDesRemovable - aStream.WriteInt32L(iDesRemovable); + aStream.WriteInt32L(iDesRemovableStatus); // iLastErrorId aStream.WriteInt32L(iLastErrorId);