creator/engine/src/creator_phonebook.cpp
changeset 52 36d60d12b4af
parent 51 b048e15729d6
--- a/creator/engine/src/creator_phonebook.cpp	Fri Sep 03 17:11:21 2010 +0300
+++ b/creator/engine/src/creator_phonebook.cpp	Fri Sep 17 14:22:55 2010 +0300
@@ -252,7 +252,7 @@
 	// create a new contact item
 	
 	TUint32 contactId = iPhonebookWrapper->CreateContactEntryL( parameters->iContactFields ); //wrapper should return contact id to store
-	iContactsToDelete.Append( contactId );
+	iContactsToDelete.AppendL( contactId );
 	
 
 	// If this contact has a link id in script (i.e. belongs to a contact-set), we must cache the contact id:
@@ -392,7 +392,7 @@
            TRAP_IGNORE( 
                do{ //iContactMngr->CreateLinksLC( in )) != NULL ) // will leave with KErrEof
                    previousLink = in.ReadUint32L();
-                   iPreviousDeleteLinks.Append( previousLink );
+                   iPreviousDeleteLinks.AppendL( previousLink );
                    if(previousLink)
                 	   {
 					   r=true;
@@ -658,7 +658,7 @@
 	    
 	    // store the link to contact, so that Creator is able to delete
 	    // it when user requests deletion of contacts that were created with Creator 
-	    iContactGroupsToDelete.Append( newGroupId );
+	    iContactGroupsToDelete.AppendL( newGroupId );
 	    
 	    return err;
     }