commsfwtools/preparedefaultcommsdatabase/src/MetaDatabaseVisitor.cpp
branchRCL_3
changeset 48 07656293a99c
parent 0 dfb7c4ff071f
equal deleted inserted replaced
37:35c06c1d4fa6 48:07656293a99c
   233     // The fields not found are the records using the template so add the difference to the list of candidates
   233     // The fields not found are the records using the template so add the difference to the list of candidates
   234     for ( TInt i = 0; i < (aRecordIds.Count() - 1); i++ ) // don't ever want to include the table id.
   234     for ( TInt i = 0; i < (aRecordIds.Count() - 1); i++ ) // don't ever want to include the table id.
   235         {
   235         {
   236         if ( KErrNotFound == fieldIds.Find(aRecordIds[i], CompareByRecordId) )
   236         if ( KErrNotFound == fieldIds.Find(aRecordIds[i], CompareByRecordId) )
   237             {
   237             {
   238             aCandidateIds.Append(aRecordIds[i]);
   238             aCandidateIds.AppendL(aRecordIds[i]);
   239             }
   239             }
   240         }
   240         }
   241     CleanupStack::PopAndDestroy(&fieldIds); 
   241     CleanupStack::PopAndDestroy(&fieldIds); 
   242     }
   242     }
   243 
   243