locationtriggering/ltclientlib/src/lbtgeowcdmacell.cpp
branchRCL_3
changeset 45 6b6920c56e2f
parent 44 2b4ea9893b66
--- a/locationtriggering/ltclientlib/src/lbtgeowcdmacell.cpp	Tue Aug 31 15:37:04 2010 +0300
+++ b/locationtriggering/ltclientlib/src/lbtgeowcdmacell.cpp	Wed Sep 01 12:24:21 2010 +0100
@@ -125,11 +125,7 @@
     for(TInt i=0;i<aWcdmaCellInfo.iMeasurementResult.Count();++i)
     	{
     	TLbtWcdmaCellInfo::TLbtCellMeasuredResult nmr = aWcdmaCellInfo.iMeasurementResult[i];
-    	TInt error = iCellInfo.iMeasurementResult.Append(nmr);
-    	if( error != KErrNone )
-    	    {
-            return;
-    	    }
+    	iCellInfo.iMeasurementResult.Append(nmr);
     	}    
     }
     
@@ -197,6 +193,6 @@
         TLbtWcdmaCellInfo::TLbtCellMeasuredResult cellMeas;
         cellMeas.iEcNo = aStream.ReadInt16L();
         cellMeas.iRscp = aStream.ReadInt16L();
-        iCellInfo.iMeasurementResult.AppendL(cellMeas);
+        iCellInfo.iMeasurementResult.Append(cellMeas);
         }
     }