email/pop3andsmtpmtm/clientmtms/src/CIMPLAINBODYTEXT.cpp
changeset 55 5b3b2fa8c3ec
parent 37 518b245aa84c
--- a/email/pop3andsmtpmtm/clientmtms/src/CIMPLAINBODYTEXT.cpp	Fri Aug 06 23:19:50 2010 +0530
+++ b/email/pop3andsmtpmtm/clientmtms/src/CIMPLAINBODYTEXT.cpp	Wed Aug 18 00:46:12 2010 +0530
@@ -70,7 +70,7 @@
 	TInt count = iEmailMessage.Selection().Count();
 	for(TInt i=0;i<count;++i)
 		{
-		textIdArray.Append(iEmailMessage.Selection().At(i));
+		textIdArray.AppendL(iEmailMessage.Selection().At(i));
 		}
 		
 	TUint charset = 0; // Will contain the charset when GetCharacterSetL returns.
@@ -93,7 +93,7 @@
 		iMsvEntry.SetEntryL(textIdArray[0]);
 		iStore = iMsvEntry.EditStoreL();
 		// Body text is stored in MailStore as 16 bit so set iIs8Bit to EFalse.
-		iPlainTextArray.Append(iStore->InitialisePlainBodyTextForWriteL(EFalse, charset, defaultCharset));	
+		iPlainTextArray.AppendL(iStore->InitialisePlainBodyTextForWriteL(EFalse, charset, defaultCharset));	
 		}	
 	else
 		{
@@ -105,7 +105,7 @@
 			CMsvStore* store = iMsvEntry.ReadStoreL();
 			CleanupStack::PushL(store);
 			
-			iPlainTextArray.Append( store->InitialisePlainBodyTextForReadL(aChunkLength));
+			iPlainTextArray.AppendL( store->InitialisePlainBodyTextForReadL(aChunkLength));
 			// if the existing charset was overidden by calling CImEmailMessage::SetCharacterSetL
 			if(override)
 				{