creator/engine/src/creator_phonebook.cpp
changeset 54 9347c563e054
parent 48 da3ec8478e66
--- a/creator/engine/src/creator_phonebook.cpp	Fri Sep 17 08:29:47 2010 +0300
+++ b/creator/engine/src/creator_phonebook.cpp	Mon Oct 04 00:18:03 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;
     }