diff -r 3b67655da2cc -r 673fb3e04649 profilesservices/MediaFileList/Src/mediafilehandler.cpp --- a/profilesservices/MediaFileList/Src/mediafilehandler.cpp Mon Jun 21 15:59:17 2010 +0300 +++ b/profilesservices/MediaFileList/Src/mediafilehandler.cpp Thu Jul 15 18:57:55 2010 +0300 @@ -2744,7 +2744,7 @@ filename.Format( KFormat, &aDirectory, &item.iName ); index = aList.Count(); CSearchListItem* item2 = SearchListItemFromRomL( filename, index ); - aList.Append( item2 ); + aList.AppendL( item2 ); } CleanupStack::PopAndDestroy( dir ); @@ -2784,7 +2784,7 @@ { const TEntry item = (*dir)[i]; filename.Format( KFormat, &aDirectory, &item.iName ); - aList.Append( filename ); + aList.AppendL( filename ); } CleanupStack::PopAndDestroy( dir ); @@ -2986,7 +2986,7 @@ TInt rt = title.FindF( aSearchText ); if ( rt != KErrNotFound ) { - iList.Append( item ); + iList.AppendL( item ); } } } @@ -3015,7 +3015,7 @@ TInt rt = title.FindF( aSearchText ); if ( rt != KErrNotFound ) { - iList.Append( item ); + iList.AppendL( item ); } } }