--- 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;
}
+ */
};
}
--- 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;
--- 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
*