--- a/application/src/PodcastQueueView.cpp Fri May 28 17:43:08 2010 +0100
+++ b/application/src/PodcastQueueView.cpp Thu Jun 03 15:59:28 2010 +0100
@@ -255,21 +255,25 @@
break;
case EPodcastMoveDownloadUp:
{
+ //iPodcastModel.ShowEngine().SuspendDownloads();
TInt index = iListContainer->Listbox()->CurrentItemIndex();
if (index >= 0 && index < iPodcastModel.ActiveShowList().Count())
{
TRAP_IGNORE(iPodcastModel.ShowEngine().MoveDownloadUpL(iPodcastModel.ActiveShowList()[index]->Uid()));
}
+ //iPodcastModel.ShowEngine().ResumeDownloadsL();
UpdateListboxItemsL();
}
break;
case EPodcastMoveDownloadDown:
{
+ //iPodcastModel.ShowEngine().SuspendDownloads();
TInt index = iListContainer->Listbox()->CurrentItemIndex();
if (index >= 0 && index < iPodcastModel.ActiveShowList().Count())
{
TRAP_IGNORE(iPodcastModel.ShowEngine().MoveDownloadDownL(iPodcastModel.ActiveShowList()[index]->Uid()));
}
+ //iPodcastModel.ShowEngine().ResumeDownloadsL();
UpdateListboxItemsL();
}
break;