diff -r 883e91c086aa -r 48c22c726cf9 mtpfws/mtpfw/src/cmtpreferencemgr.cpp --- a/mtpfws/mtpfw/src/cmtpreferencemgr.cpp Tue Jul 06 15:13:34 2010 +0300 +++ b/mtpfws/mtpfw/src/cmtpreferencemgr.cpp Wed Aug 18 10:38:51 2010 +0300 @@ -136,7 +136,7 @@ for(TInt i = 0; i < count; i++) { TUint32 toHandle = iObjectStore.HandleL(aToSuids[i]); - toHandles.Append(toHandle); + toHandles.AppendL(toHandle); } SetReferencesL(fromHandle, toHandles); @@ -336,7 +336,7 @@ TInt count = aToHandles.NumElements(); for(TInt i = 0; i < count; i++) { - tempArray.Append(aToHandles.ElementUint(i)); + tempArray.AppendL(aToHandles.ElementUint(i)); } SetReferencesL(aFromHandle.Value(), tempArray); CleanupStack::PopAndDestroy(&tempArray);