equal
deleted
inserted
replaced
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 |