# HG changeset patch # User Sebastian Brannstrom # Date 1288085060 -3600 # Node ID b5bd609d37925ecdf9ce4b1cd9d5684f4f3854d0 # Parent 655dbce90b7086f39a2995b59c2e459d4082ebea Fix for crash in S3 version diff -r 655dbce90b70 -r b5bd609d3792 application/src/PodcastShowsView.cpp --- a/application/src/PodcastShowsView.cpp Mon Oct 25 14:04:32 2010 +0100 +++ b/application/src/PodcastShowsView.cpp Tue Oct 26 10:24:20 2010 +0100 @@ -632,18 +632,6 @@ TInt index = iListContainer->Listbox()->CurrentItemIndex(); - TBool showMarkAllPlayed = EFalse; - for (int i=0;iPlayState() == ENeverPlayed) - { - showMarkAllPlayed = ETrue; - break; - } - - } - if (index >= 0 && index < iPodcastModel.ActiveShowList().Count()) { CShowInfo* info = iPodcastModel.ActiveShowList()[index]; @@ -657,7 +645,6 @@ aMenuPane->SetItemDimmed(EPodcastDownloadShow, hideDownloadShowCmd); aMenuPane->SetItemDimmed(EPodcastDeleteShow, hideDeleteShowCmd); - aMenuPane->SetItemDimmed(EPodcastMarkAllPlayed, !showMarkAllPlayed); } } }