uifw/EikStd/coctlsrc/EIKLBV.CPP
branchRCL_3
changeset 72 a5e7a4f63858
parent 56 d48ab3b357f1
--- a/uifw/EikStd/coctlsrc/EIKLBV.CPP	Wed Sep 15 12:29:17 2010 +0300
+++ b/uifw/EikStd/coctlsrc/EIKLBV.CPP	Wed Oct 13 14:50:15 2010 +0300
@@ -1500,48 +1500,6 @@
     }
 
 
-// ---------------------------------------------------------------------------
-// Sets all items selected.
-// ---------------------------------------------------------------------------
-//
-void CListBoxView::SelectAllL( TBool aDrawItems )
-    {
-    _AKNTRACE_FUNC_ENTER;
-    
-    __ASSERT_DEBUG( iSelectionIndexes, 
-                    Panic( EEikPanicListBoxNoSelIndexArray ) );
-    __ASSERT_DEBUG( iModel, Panic( EEikPanicListBoxNoModel ) );
-    
-#ifdef RD_UI_TRANSITION_EFFECTS_LIST
-    MAknListBoxTfxInternal* transApi = CAknListLoader::TfxApiInternal( iGc );
-#endif // RD_UI_TRANSITION_EFFECTS_LIST    
-    
-    ClearSelection();
-    TInt numItems = iModel->NumberOfItems();
-    
-    for ( TInt i = 0; i < numItems; i++ )
-        {
-        if ( !iItemDrawer->Properties( i ).IsSelectionHidden() ) 
-            { 
-#ifdef RD_UI_TRANSITION_EFFECTS_LIST
-            if ( transApi )
-                {
-                transApi->Invalidate( MAknListBoxTfxInternal::EListItem, i );
-                }
-#endif // RD_UI_TRANSITION_EFFECTS_LIST
-            
-            iSelectionIndexes->AppendL( i );
-            
-            if ( aDrawItems )
-                {
-                DrawItem( i );
-                }
-            }
-        }
-    _AKNTRACE_FUNC_EXIT;
-    }
-
-
 // class CSnakingListBoxView
 
 EXPORT_C CSnakingListBoxView::CSnakingListBoxView()