diff -r f952f3a1a786 -r 44d205147a83 application/data/PodcastQueueView.ra --- a/application/data/PodcastQueueView.ra Wed Oct 13 23:58:25 2010 +0100 +++ b/application/data/PodcastQueueView.ra Sat Oct 16 18:04:09 2010 +0100 @@ -49,6 +49,24 @@ { command = EAknSoftkeyExit; txt = STRING_r_exit_cmd; + }, + MENU_ITEM + { + txt = STRING_r_view_remove_download_short_cmd; + command = EPodcastRemoveDownload; + flags = EEikMenuItemSpecific; + }, + MENU_ITEM + { + txt = STRING_r_view_move_up_short_cmd; + command = EPodcastMoveDownloadUp; + flags = EEikMenuItemSpecific; + }, + MENU_ITEM + { + txt = STRING_r_view_move_down_short_cmd; + command = EPodcastMoveDownloadDown; + flags = EEikMenuItemSpecific; } }; } @@ -115,25 +133,3 @@ } }; } - -RESOURCE STYLUS_POPUP_MENU r_queueview_popup_menu - { - items = - { - STYLUS_POPUP_MENU_ITEM - { - txt = STRING_r_view_remove_download_short_cmd; - command = EPodcastRemoveDownload; - }, - STYLUS_POPUP_MENU_ITEM - { - txt = STRING_r_view_move_up_short_cmd; - command = EPodcastMoveDownloadUp; - }, - STYLUS_POPUP_MENU_ITEM - { - txt = STRING_r_view_move_down_short_cmd; - command = EPodcastMoveDownloadDown; - } - }; - }