diff -r 2872ae438bf7 -r e538444823de harvester/server/src/mdeobjecthandler.cpp --- a/harvester/server/src/mdeobjecthandler.cpp Wed Sep 15 12:40:59 2010 +0300 +++ b/harvester/server/src/mdeobjecthandler.cpp Wed Oct 13 15:02:02 2010 +0300 @@ -126,7 +126,7 @@ CMdERelation* relation = iMdeSession->NewRelationLC( albumRelationDef, albumId, objectId, 0 ); - relationEventArray.AppendL( STATIC_CAST( CMdEInstanceItem*, relation ) ); + relationEventArray.Append( STATIC_CAST( CMdEInstanceItem*, relation ) ); CleanupStack::Pop(); //relation } } @@ -140,7 +140,7 @@ { CMdEEvent* event = iMdeSession->NewEventLC( *eventDef, objectId, time ); - relationEventArray.AppendL( STATIC_CAST( CMdEInstanceItem*, event ) ); + relationEventArray.Append( STATIC_CAST( CMdEInstanceItem*, event ) ); CleanupStack::Pop(); // event } }