photosgallery/viewframework/medialists/tsrc/t_glxlistwindow/t_glxlistwindow.cpp
branchRCL_3
changeset 47 f9e827349359
parent 18 bcb43dc84c44
--- a/photosgallery/viewframework/medialists/tsrc/t_glxlistwindow/t_glxlistwindow.cpp	Wed Jun 09 09:41:51 2010 +0300
+++ b/photosgallery/viewframework/medialists/tsrc/t_glxlistwindow/t_glxlistwindow.cpp	Mon Jun 21 15:40:32 2010 +0300
@@ -336,7 +336,7 @@
     /// @todo combine these 3 lines to a single call to AddObjects
     if ( info.iTotalSize > 0 )
         {
-        window->AddObjects( info.iFocusIndex, info.iTotalSize, 
+        window->AddObjectsL( info.iFocusIndex, info.iTotalSize, 
             0, info.iTotalSize - 1 );
         }
     
@@ -347,9 +347,9 @@
     }
 
 /** Cleans up a window */
-void Cleanup( CTestWindow& aWindow )
+void CleanupL( CTestWindow& aWindow )
     {
-    aWindow.Cleanup();
+    aWindow.CleanupL();
     // test cleanup ok
     for ( TInt i = 0; i < aWindow.iEntries.Count(); i++ )
         {
@@ -365,7 +365,7 @@
     AssertWindow( aWindow, aWindowAfter );
     // makes sure reused items have not been cleaned up during update
     AssertReuse( aWindow, aWindowBefore, aWindowAfter, aChange, aChangedIndex, aChangeCount );
-    Cleanup( aWindow );
+    CleanupL( aWindow );
     }
     
 /** 
@@ -396,7 +396,7 @@
         window->iList = aListAfterChange;
         changeCount = strlen( aListAfterChange ) - strlen( aListBeforeChange );
         TWindowInfo info = AnalyzeWindow( aWindowAfter );
-        window->AddObjects( info.iFocusIndex, info.iTotalSize,       // focus, size
+        window->AddObjectsL( info.iFocusIndex, info.iTotalSize,       // focus, size
             aChangedIndex, aChangedIndex + changeCount - 1 ); // first index, last index
         window->iOldList = window->iList; // iOldList is used to check cleanup
         }
@@ -405,14 +405,14 @@
         window->iList = aListAfterChange;
         changeCount = strlen( aListBeforeChange ) - strlen( aListAfterChange );
         TWindowInfo info = AnalyzeWindow( aWindowAfter );
-        window->RemoveObjects(  info.iFocusIndex, info.iTotalSize, // focus, size
+        window->RemoveObjectsL(  info.iFocusIndex, info.iTotalSize, // focus, size
             aChangedIndex, aChangedIndex + changeCount - 1 ); // first index, last index
         window->iOldList = window->iList; // iOldList is used to check cleanup
         }
     if ( ENone == aChange )
         {
         TWindowInfo info = AnalyzeWindow( aWindowAfter );
-        window->SetFocusIndex( info.iFocusIndex, info.iTotalSize );
+        window->SetFocusIndexL( info.iFocusIndex, info.iTotalSize );
         }
         
     VerifyAndCleanup( *window, aWindowBefore, aWindowAfter, aChange, 
@@ -574,23 +574,23 @@
     SetupL, T_SetRangeOffsetsLL, Teardown)
 
 EUNIT_TEST(
-    "SetFocusIndex",
+    "SetFocusIndexL",
     "CGlxListWindow",
-    "SetFocusIndex",
+    "SetFocusIndexL",
     "FUNCTIONALITY",
     SetupL, T_SetFocusIndexL, Teardown)
     
 EUNIT_TEST(
-    "AddObjects",
+    "AddObjectsL",
     "CGlxListWindow",
-    "AddObjects",
+    "AddObjectsL",
     "FUNCTIONALITY",
     SetupL, T_AddObjectsL, Teardown)
     
 EUNIT_TEST(
-    "RemoveObjects",
+    "RemoveObjectsL",
     "CGlxListWindow",
-    "RemoveObjects",
+    "RemoveObjectsL",
     "FUNCTIONALITY",
     SetupL, T_RemoveObjectsL, Teardown)