diff -r da3ec8478e66 -r 9347c563e054 creator/engine/src/creator_mailbox.cpp --- a/creator/engine/src/creator_mailbox.cpp Fri Sep 17 08:29:47 2010 +0300 +++ b/creator/engine/src/creator_mailbox.cpp Mon Oct 04 00:18:03 2010 +0300 @@ -311,7 +311,7 @@ // appending mailbox type to array to be able to use // correct type when deleting mailboxes - iEntryIds.Append( parameters->iMailboxType ); + iEntryIds.AppendL( parameters->iMailboxType ); if (parameters->iMailboxType == EMailboxIMAP4) { @@ -321,12 +321,12 @@ TSmtpAccount smtpAccountId = account->CreateSmtpAccountL(imapAccountId, *smtpSet, *outgoingIAPSet, EFalse); account->SetDefaultSmtpAccountL(smtpAccountId); - iEntryIds.Append( imapAccountId.iImapAccountId ); - iEntryIds.Append( imapAccountId.iImapService ); - iEntryIds.Append( imapAccountId.iSmtpService ); - iEntryIds.Append( smtpAccountId.iSmtpAccountId ); - iEntryIds.Append( smtpAccountId.iSmtpService ); - iEntryIds.Append( smtpAccountId.iRelatedService ); + iEntryIds.AppendL( imapAccountId.iImapAccountId ); + iEntryIds.AppendL( imapAccountId.iImapService ); + iEntryIds.AppendL( imapAccountId.iSmtpService ); + iEntryIds.AppendL( smtpAccountId.iSmtpAccountId ); + iEntryIds.AppendL( smtpAccountId.iSmtpService ); + iEntryIds.AppendL( smtpAccountId.iRelatedService ); StoreIMEIToEntryL( imapAccountId.iImapService ); StoreIMEIToEntryL( smtpAccountId.iSmtpService ); @@ -339,12 +339,12 @@ TSmtpAccount smtpAccountId = account->CreateSmtpAccountL(popAccountId, *smtpSet, *outgoingIAPSet, EFalse); account->SetDefaultSmtpAccountL(smtpAccountId); - iEntryIds.Append( popAccountId.iPopAccountId ); - iEntryIds.Append( popAccountId.iPopService ); - iEntryIds.Append( popAccountId.iSmtpService ); - iEntryIds.Append( smtpAccountId.iSmtpAccountId ); - iEntryIds.Append( smtpAccountId.iSmtpService ); - iEntryIds.Append( smtpAccountId.iRelatedService ); + iEntryIds.AppendL( popAccountId.iPopAccountId ); + iEntryIds.AppendL( popAccountId.iPopService ); + iEntryIds.AppendL( popAccountId.iSmtpService ); + iEntryIds.AppendL( smtpAccountId.iSmtpAccountId ); + iEntryIds.AppendL( smtpAccountId.iSmtpService ); + iEntryIds.AppendL( smtpAccountId.iRelatedService ); StoreIMEIToEntryL( popAccountId.iPopService ); StoreIMEIToEntryL( smtpAccountId.iSmtpService );