application/src/PodcastQueueView.cpp
branchsymbian1
changeset 146 78d1b03a94ff
parent 145 cc0182a5da39
child 149 70b2f592a460
--- 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;