diff -r 7333d7932ef7 -r 8b7f4e561641 installationservices/swi/source/plan/plan.cpp --- a/installationservices/swi/source/plan/plan.cpp Tue Aug 31 15:21:33 2010 +0300 +++ b/installationservices/swi/source/plan/plan.cpp Wed Sep 01 12:22:02 2010 +0100 @@ -38,9 +38,6 @@ iFilesToRunBeforeShutdown.ResetAndDestroy(); iFilesToRunAfterInstall.ResetAndDestroy(); iAppArcRegFiles.ResetAndDestroy(); -#ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK - iAffectedApps.Close(); -#endif } EXPORT_C CPlan* CPlan::NewL() @@ -155,28 +152,5 @@ { iAppArcRegFiles.ResetAndDestroy(); } + -#ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK -EXPORT_C void CPlan::SetAffectedApps(RArray& aAppInfo) - { - TInt count = aAppInfo.Count(); - for(TInt i = 0 ; i< count ; i++) - { - iAffectedApps.Append(aAppInfo[i]); - } - } - -EXPORT_C void CPlan::GetAffectedApps(RArray& aAppInfo) const - { - TInt count = iAffectedApps.Count(); - for(TInt i = 0 ; i< count ; i++) - { - aAppInfo.Append(iAffectedApps[i]); - } - } - -EXPORT_C void CPlan::ResetAffectedApps() - { - iAffectedApps.Reset(); - } -#endif