--- a/harvesterplugins/notes/src/notesplugin.cpp Fri May 14 15:53:17 2010 +0300
+++ b/harvesterplugins/notes/src/notesplugin.cpp Thu May 27 12:52:35 2010 +0300
@@ -352,13 +352,14 @@
index_item->AddFieldL(KMimeTypeField, KMimeTypeNotes, CDocumentField::EStoreYes | CDocumentField::EIndexUnTokenized);
- TInt excerptLength = entry->DescriptionL().Length();
- HBufC* excerpt = HBufC::NewLC(excerptLength);
- TPtr excerptDes = excerpt->Des();
- excerptDes.Append(entry->DescriptionL());
-
- index_item->AddExcerptL(*excerpt);
- CleanupStack::PopAndDestroy(excerpt);
+ //For notes, no content is expected in excerpt for now.
+ //See appclass-hierarchy.txt for details.
+// TInt excerptLength = entry->DescriptionL().Length();
+// HBufC* excerpt = HBufC::NewLC(excerptLength);
+// TPtr excerptDes = excerpt->Des();
+// excerptDes.Append(entry->DescriptionL());
+// index_item->AddExcerptL(*excerpt);
+// CleanupStack::PopAndDestroy(excerpt);
// Send for indexing
if (aActionType == ECPixAddAction)