appinstaller/AppMngr2/src/appmngr2listview.cpp
branchRCL_3
changeset 61 cd189dac02f7
parent 15 51c0f5edf5ef
child 65 7333d7932ef7
--- a/appinstaller/AppMngr2/src/appmngr2listview.cpp	Mon Jun 21 15:48:28 2010 +0300
+++ b/appinstaller/AppMngr2/src/appmngr2listview.cpp	Thu Jul 15 18:47:04 2010 +0300
@@ -36,7 +36,6 @@
 #include <eikmenup.h>                   // CEikMenuPaneItem
 #include <akntitle.h>                   // CAknTitlePane
 #include <StringLoader.h>               // StringLoader
-#include <AknInfoPopupNoteController.h> // CAknInfoPopupNoteController
 #include <appmngr2.rsg>                 // Resource IDs
 
 const TUid KStatusPaneUid = { EEikStatusPaneUidTitle };
@@ -68,7 +67,6 @@
         AppUi()->RemoveFromViewStack( *this, iContainer );
         delete iContainer;
         }
-    delete iInfoPopup;
     }
 
 // ---------------------------------------------------------------------------
@@ -89,15 +87,7 @@
             StopDisplayingMenuBar();
             iMaintainFocus = EFalse;
             }
-
-        // Close progress note used in application startup
-        if( iInfoPopup && !aMoreRefreshesExpected )
-            {
-            iInfoPopup->HideInfoPopupNote();
-            delete iInfoPopup;
-            iInfoPopup = NULL;
-            }
-
+            
         FLOG( "CAppMngr2ListView::RefreshL() end" );
         }
     }
@@ -237,16 +227,7 @@
         }
     UpdateMiddleSoftkeyCommandL();
 
-    if( iInfoPopup == NULL )
-        {
-        iInfoPopup = CAknInfoPopupNoteController::NewL();
-        iInfoPopup->SetTimePopupInView( 0 );
-        iInfoPopup->HideWhenAppFaded( EFalse );
-        HBufC* noteText = StringLoader::LoadLC( R_QTN_AM_SCANNING_MEMORY );
-        iInfoPopup->SetTextL( *noteText );
-        CleanupStack::PopAndDestroy( noteText );
-        iInfoPopup->ShowInfoPopupNote();
-        }
+    // Note Infopopup is removed and replaced with wait dialog.         
     }
 
 // ---------------------------------------------------------------------------
@@ -263,11 +244,6 @@
         delete iContainer;
         iContainer = NULL;
         }
-    if( iInfoPopup )
-        {
-        delete iInfoPopup;
-        iInfoPopup = NULL;
-        }
     }
 
 // ---------------------------------------------------------------------------