diff -r 997a02608b3a -r 16ed8d08d0b1 ipsservices/ipssosplugin/src/ipsplgmsgmapper.cpp --- a/ipsservices/ipssosplugin/src/ipsplgmsgmapper.cpp Tue Jul 06 14:04:34 2010 +0300 +++ b/ipsservices/ipssosplugin/src/ipsplgmsgmapper.cpp Wed Aug 18 09:37:47 2010 +0300 @@ -1085,7 +1085,7 @@ childPart = GetMessagePartL( (*cEntry)[0].Id(), aMailBoxId, aMessageId ); if( childPart ) { - aParts.Append( childPart ); + aParts.AppendL( childPart ); } } } @@ -1147,7 +1147,7 @@ // Insert the new child part to the result array if ( childPart ) { - aParts.Insert( childPart, position ); + aParts.InsertL( childPart, position ); childPart = NULL; } } @@ -1542,11 +1542,11 @@ mimeHeader->RestoreL( *store ); TInt count = mimeHeader->ContentTypeParams().MdcaCount(); - INFO_1("# of CT params: %d", count); + //INFO_1("# of CT params: %d", count); for ( TInt i = 0; i < count; i++ ) { TPtrC8 key8 = mimeHeader->ContentTypeParams().MdcaPoint( i ); - INFO_1("%S", &key8); + //INFO_1("%S", &key8); TPtr16 keyUppercase16 = HBufC::NewLC( key8.Length() )->Des(); keyUppercase16.Copy( key8 ); keyUppercase16.UpperCase();