photosgallery/viewframework/visuallistmanager/src/glxvisuallistcontrol.cpp
branchRCL_3
changeset 47 f9e827349359
parent 18 bcb43dc84c44
--- a/photosgallery/viewframework/visuallistmanager/src/glxvisuallistcontrol.cpp	Wed Jun 09 09:41:51 2010 +0300
+++ b/photosgallery/viewframework/visuallistmanager/src/glxvisuallistcontrol.cpp	Mon Jun 21 15:40:32 2010 +0300
@@ -306,7 +306,7 @@
 	GLX_LOG_INFO("CGlxVisualListControl::AddObserverL");
 	__ASSERT_DEBUG(iObservers.Find(aObserver) == KErrNotFound, 
 	                    Panic(EGlxPanicIllegalArgument)); // Already exists
-	iObservers.Append(aObserver);
+	iObservers.AppendL(aObserver);
 	}
 
 // -----------------------------------------------------------------------------
@@ -342,7 +342,7 @@
 	context.iId = nextId;
 	context.iFrontVisibleRangeOffset = aFrontVisibleRangeOffset;
 	context.aRearVisibleRangeOffset = aRearVisibleRangeOffset;
-	iContexts.Append(context); // Cannot fail thanks to reservation
+	iContexts.AppendL(context); // Cannot fail thanks to reservation
 	
 	// Combine the contexts, and update the window
 	TInt frontOffset = 0;
@@ -445,7 +445,7 @@
 	{
 	TRACER("CGlxVisualListControl::HandleItemAddedL");
 	GLX_LOG_INFO("CGlxVisualListControl::HandleItemAddedL");
-	iVisualWindow->AddObjects( aStartIndex, aEndIndex );
+	iVisualWindow->AddObjectsL( aStartIndex, aEndIndex );
 	iVisualWindow->UpdatePositions();
 	}
 	
@@ -469,7 +469,7 @@
 	{
 	TRACER("CGlxVisualListControl::HandleItemRemovedL");
 	GLX_LOG_INFO("CGlxVisualListControl::HandleItemRemovedL");
-	iVisualWindow->RemoveObjects( aStartIndex, aEndIndex );
+	iVisualWindow->RemoveObjectsL( aStartIndex, aEndIndex );
 	iVisualWindow->UpdatePositions();
 	}