diff -r 92f864ef0288 -r ae54820ef82c iaupdate/IAD/backgroundchecker/src/iaupdatebginternalfilehandler.cpp --- a/iaupdate/IAD/backgroundchecker/src/iaupdatebginternalfilehandler.cpp Wed Jun 23 18:20:02 2010 +0300 +++ b/iaupdate/IAD/backgroundchecker/src/iaupdatebginternalfilehandler.cpp Tue Jul 06 14:23:31 2010 +0300 @@ -15,9 +15,6 @@ * */ - - - #include #include #include @@ -67,7 +64,7 @@ // CIAUpdateBGInternalFileHandler::CIAUpdateBGInternalFileHandler() : iLastTimeShowNewFeatureDialog( 0 ), iUserRejectNewFeatureDialog( EFalse ), - iNextRemindTime(0), iIsReminderOn( EFalse ), iMode( EFirstTimeMode ), iFwVersion( NULL ), + iMode( EFirstTimeMode ), iFwVersion( NULL ), iSNID(0), iRetryTimes(0) { } @@ -215,62 +212,6 @@ iUserRejectNewFeatureDialog = aUserDecision; } - -// ----------------------------------------------------------------------------- -// CIAUpdateBGInternalFileHandler::ReminderOn -// -// ----------------------------------------------------------------------------- -// -TBool CIAUpdateBGInternalFileHandler::ReminderOn() - { - return iIsReminderOn; - } - - -// ----------------------------------------------------------------------------- -// CIAUpdateBGInternalFileHandler::SetReminder -// -// ----------------------------------------------------------------------------- -// -void CIAUpdateBGInternalFileHandler::SetReminder( TBool aOn ) - { - iIsReminderOn = aOn; - } - - -// ----------------------------------------------------------------------------- -// CIAUpdateBGInternalFileHandler::NextRemindTime -// -// ----------------------------------------------------------------------------- -// -TTime CIAUpdateBGInternalFileHandler::NextRemindTime() - { - return iNextRemindTime; - } - - -// ----------------------------------------------------------------------------- -// CIAUpdateBGInternalFileHandler::SetNextRemindTime -// -// ----------------------------------------------------------------------------- -// -void CIAUpdateBGInternalFileHandler::SetNextRemindTime( TTime aNextRemindTime ) - { - iNextRemindTime = aNextRemindTime; - } - - -// ----------------------------------------------------------------------------- -// CIAUpdateBGInternalFileHandler::SetNextRemindTime -// -// ----------------------------------------------------------------------------- -// -void CIAUpdateBGInternalFileHandler::SetNextRemindTime( TInt64 aNextRemindTime ) - { - iNextRemindTime = aNextRemindTime; - } - - // ----------------------------------------------------------------------------- // CIAUpdateBGInternalFileHandler::SetMode // @@ -382,6 +323,7 @@ // Static casting is safe to do here because enum and TInt are the same. SetUserRejectNewFeatureDialog( static_cast< TBool >( userDecision ) ); + /* TInt64 nextRemindTime( 0 ); aStream >> nextRemindTime; SetNextRemindTime( nextRemindTime ); @@ -389,6 +331,7 @@ TInt remindOn( aStream.ReadUint8L() ); // Static casting is safe to do here because enum and TInt are the same. SetReminder( static_cast< TBool >( remindOn ) ); + */ TInt mode( aStream.ReadUint8L() ); SetMode( static_cast (mode) ); @@ -424,11 +367,13 @@ TInt userDecision ( UserRejectNewFeatureDialog() ); aStream.WriteUint8L( userDecision ); + /* TInt64 nextRemindTime( NextRemindTime().Int64() ); aStream << nextRemindTime; TInt remindOn ( ReminderOn() ); aStream.WriteUint8L( remindOn ); + */ TInt mode( Mode() ); aStream.WriteUint8L( mode );