# HG changeset patch # User Brendan Donegan # Date 1275577168 -3600 # Node ID 78d1b03a94ffd0ebe5cffe3b849d778b76afb9d7 # Parent cc0182a5da39a5e3f089ceac5c4a5244a4fd6583 Disable Bug 2737, since it's not quite working yet diff -r cc0182a5da39 -r 78d1b03a94ff application/data/PodcastQueueView.ra --- a/application/data/PodcastQueueView.ra Fri May 28 17:43:08 2010 +0100 +++ b/application/data/PodcastQueueView.ra Thu Jun 03 15:59:28 2010 +0100 @@ -142,7 +142,7 @@ { txt = STRING_r_view_remove_download_short_cmd; command = EPodcastRemoveDownload; - }, + }/*, STYLUS_POPUP_MENU_ITEM { txt = STRING_r_view_move_up_short_cmd; @@ -153,5 +153,6 @@ txt = STRING_r_view_move_down_short_cmd; command = EPodcastMoveDownloadDown; } + */ }; } diff -r cc0182a5da39 -r 78d1b03a94ff application/src/PodcastQueueView.cpp --- 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; diff -r cc0182a5da39 -r 78d1b03a94ff engine/group/bld.inf --- a/engine/group/bld.inf Fri May 28 17:43:08 2010 +0100 +++ b/engine/group/bld.inf Thu Jun 03 15:59:28 2010 +0100 @@ -1,3 +1,4 @@ + /* * Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB *