diff -r 17302fa075e1 -r da6ac9d688df mobilemessaging/smum/src/SmumSettingsDialogGSM.cpp --- a/mobilemessaging/smum/src/SmumSettingsDialogGSM.cpp Wed Sep 15 12:08:45 2010 +0300 +++ b/mobilemessaging/smum/src/SmumSettingsDialogGSM.cpp Wed Oct 13 14:27:34 2010 +0300 @@ -150,9 +150,6 @@ // Prepare FeatureManager, read values to members and uninitialize FeatureManager FeatureManager::InitializeLibL(); iHelpFeatureSupported = FeatureManager::FeatureSupported( KFeatureIdHelp ); - // REQ:417-48417 Message forward with sender info - iForwardWithSenderSupported = FeatureManager::FeatureSupported(KFeatureIdMsgForwardWithSender); - // End REQ:417-48417 FeatureManager::UnInitializeLib(); // Read the supported settings iEmailFeatureSupported = SmumUtil::CheckEmailOverSmsSupportL(); @@ -627,23 +624,6 @@ SetItem( index, iSettings.ReplyPath() ? ESmumSettingsYes : ESmumSettingsNo ); } } - - // REQ:417-48417 Message forward with sender info - if (!iTypeOfSettings && iForwardWithSenderSupported) - { - if ( !iSettingsArrayIndex->Find ( ESmumForwardWithSenderInfoLBI, key, index ) ) - { - TInt forwardWithSenderInfo; - if ( iCentralRapository->Get( KForwardWithSenderInfo, forwardWithSenderInfo ) != KErrNone ) - { - //In case of any error,set the default value to 0 - forwardWithSenderInfo = 0; - } - SetItem(index, forwardWithSenderInfo? ESmumSettingsYes : ESmumSettingsNo); - } - } - // End REQ:417-48417 - SMUMLOGGER_LEAVEFN(" CSmumMainSettingsDialogGSM::OpeningDialogL"); } @@ -786,17 +766,6 @@ iSettings.SetReplyPath( Item( index ) == ESmumSettingsYes ); } } - - // REQ:417-48417 Message forward with sender info - if (!iTypeOfSettings && iForwardWithSenderSupported) - { - if (!iSettingsArrayIndex->Find ( ESmumForwardWithSenderInfoLBI, key, index )) - { - iCentralRapository->Set(KForwardWithSenderInfo , Item( index ) == ESmumSettingsYes); - } - } - // End REQ:417-48417 - SMUMLOGGER_LEAVEFN(" CSmumMainSettingsDialogGSM::ClosingDialogL"); } @@ -1122,15 +1091,6 @@ } // ServiceCentreInUseLBI are removed } } - // REQ:417-48417 Message forward with sender info - if (!iTypeOfSettings) - { - if (!iForwardWithSenderSupported && variatedValue >= ESmumForwardWithSenderInfoLBI) - { - variatedValue ++; // if not support this feature, ESmumForwardWithSenderInfoLBI is removed - } - } - // End REQ:417-48417 return variatedValue; } @@ -1190,21 +1150,6 @@ ESmumSendOptServiceCentreInUseLBI : ESmumServiceCentreInUseLBI ); needToBeCompressed = ETrue; } - - // REQ:417-48417 Message forward with sender info - if (!iForwardWithSenderSupported && !iTypeOfSettings) - { - TInt index; - TKeyArrayFix key(0, ECmpTInt); - TInt found = iSettingsArrayIndex->Find(ESmumForwardWithSenderInfoLBI, key, index); - if (0 == found) - { - DeleteSettingItemFromArrays(index); - needToBeCompressed = ETrue; - } - } - // End REQ:417-48417 - if ( needToBeCompressed ) { iSettingsArray->Compress();