diff -r 3673b591050c -r ef55b168cedb mtpdataproviders/mtpimagedp/src/cmtpimagedpgetobjectproplist.cpp --- a/mtpdataproviders/mtpimagedp/src/cmtpimagedpgetobjectproplist.cpp Wed Apr 14 16:49:36 2010 +0300 +++ b/mtpdataproviders/mtpimagedp/src/cmtpimagedpgetobjectproplist.cpp Tue Apr 27 17:30:23 2010 +0300 @@ -364,7 +364,7 @@ case EMTPObjectPropCodeRepresentativeSampleWidth: { TUint32 value; - iPropertyMgr.GetPropertyL(TMTPObjectPropertyCode(aPropCode), value); + iPropertyMgr.GetPropertyL(TMTPObjectPropertyCode(aPropCode), value, EFalse); CMTPTypeObjectPropListElement& propElem = iPropertyList->ReservePropElemL(aHandle, propCode); propElem.SetUint32L(CMTPTypeObjectPropListElement::EValue, value); iPropertyList->CommitPropElemL(propElem); @@ -374,7 +374,7 @@ case EMTPObjectPropCodeRepresentativeSampleData: { CMTPTypeArray* value = CMTPTypeArray::NewLC(EMTPTypeAUINT8); - iPropertyMgr.GetPropertyL(TMTPObjectPropertyCode(aPropCode), *value); + iPropertyMgr.GetPropertyL(TMTPObjectPropertyCode(aPropCode), *value, EFalse); CMTPTypeObjectPropListElement& propElem = iPropertyList->ReservePropElemL(aHandle, propCode); propElem.SetArrayL(CMTPTypeObjectPropListElement::EValue, *value); iPropertyList->CommitPropElemL(propElem);