# HG changeset patch # User Sebastian Brannstrom # Date 1288534457 0 # Node ID e3ec8e436951e8e9cb1664308c9d881c975b438b # Parent 0ad6784f49b870268ef6d0d9dfe84064e7d052ad Fix for Hide command in Queue view diff -r 0ad6784f49b8 -r e3ec8e436951 application/src/PodcastFeedView.cpp --- a/application/src/PodcastFeedView.cpp Sun Oct 31 14:03:27 2010 +0000 +++ b/application/src/PodcastFeedView.cpp Sun Oct 31 14:14:17 2010 +0000 @@ -522,9 +522,6 @@ switch(aCommand) { - case EPodcastHide: - AppUi()->HandleCommandL(EEikCmdExit); - break; case EPodcastAddFeed: HandleAddFeedL(); break; diff -r 0ad6784f49b8 -r e3ec8e436951 application/src/PodcastListView.cpp --- a/application/src/PodcastListView.cpp Sun Oct 31 14:03:27 2010 +0000 +++ b/application/src/PodcastListView.cpp Sun Oct 31 14:14:17 2010 +0000 @@ -350,6 +350,9 @@ DP1("CPodcastListView::HandleCommandL=%d", aCommand); switch(aCommand) { + case EPodcastHide: + AppUi()->HandleCommandL(EEikCmdExit); + break; case EAknSoftkeyBack: { AppUi()->ActivateViewL(iPreviousView); diff -r 0ad6784f49b8 -r e3ec8e436951 application/src/PodcastQueueView.cpp --- a/application/src/PodcastQueueView.cpp Sun Oct 31 14:03:27 2010 +0000 +++ b/application/src/PodcastQueueView.cpp Sun Oct 31 14:14:17 2010 +0000 @@ -344,11 +344,8 @@ if (index >= 0 && index < iPodcastModel.ActiveShowList().Count()) { - CShowInfo* info = iPodcastModel.ActiveShowList()[index]; - aMenuPane->SetItemDimmed(EPodcastMoveDownloadDown, dimDown); - aMenuPane->SetItemDimmed(EPodcastMoveDownloadUp, dimUp); - + aMenuPane->SetItemDimmed(EPodcastMoveDownloadUp, dimUp); } } }