diff options
author | ronie <ronie@poedel.net> | 2012-09-18 21:17:37 +0200 |
---|---|---|
committer | ronie <ronie@poedel.net> | 2012-09-18 21:17:37 +0200 |
commit | cf7ca0dc88281d565bf0f2d762a255acc759b593 (patch) | |
tree | 458fe708c035caccb493d539c77d9b1bb03a5d53 | |
parent | 220b8ea0486a86866f155d9c624e523fa59dc5da (diff) |
ButtonTranslator: add extendedprogressdialog and remove duplicate entries
-rw-r--r-- | xbmc/input/ButtonTranslator.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/xbmc/input/ButtonTranslator.cpp b/xbmc/input/ButtonTranslator.cpp index 23b03aced9..6e34e32f86 100644 --- a/xbmc/input/ButtonTranslator.cpp +++ b/xbmc/input/ButtonTranslator.cpp @@ -236,7 +236,6 @@ static const ActionMapping windows[] = {"videos" , WINDOW_VIDEO_NAV}, {"tv" , WINDOW_PVR}, // backward compat {"pvr" , WINDOW_PVR}, - {"pvrguideinfo" , WINDOW_DIALOG_PVR_GUIDE_INFO}, {"pvrrecordinginfo" , WINDOW_DIALOG_PVR_RECORDING_INFO}, {"pvrtimersetting" , WINDOW_DIALOG_PVR_TIMER_SETTING}, @@ -250,7 +249,6 @@ static const ActionMapping windows[] = {"pvrosddirector" , WINDOW_DIALOG_PVR_OSD_DIRECTOR}, {"pvrosdcutter" , WINDOW_DIALOG_PVR_OSD_CUTTER}, {"pvrosdteletext" , WINDOW_DIALOG_OSD_TELETEXT}, - {"systeminfo" , WINDOW_SYSTEM_INFORMATION}, {"testpattern" , WINDOW_TEST_PATTERN}, {"screencalibration" , WINDOW_SCREEN_CALIBRATION}, @@ -278,10 +276,6 @@ static const ActionMapping windows[] = {"virtualkeyboard" , WINDOW_DIALOG_KEYBOARD}, {"volumebar" , WINDOW_DIALOG_VOLUME_BAR}, {"submenu" , WINDOW_DIALOG_SUB_MENU}, - {"pvrosdchannels" , WINDOW_DIALOG_PVR_OSD_CHANNELS}, - {"pvrosdguide" , WINDOW_DIALOG_PVR_OSD_GUIDE}, - {"pvrosddirector" , WINDOW_DIALOG_PVR_OSD_DIRECTOR}, - {"pvrosdcutter" , WINDOW_DIALOG_PVR_OSD_CUTTER}, {"favourites" , WINDOW_DIALOG_FAVOURITES}, {"contextmenu" , WINDOW_DIALOG_CONTEXT_MENU}, {"infodialog" , WINDOW_DIALOG_KAI_TOAST}, @@ -343,7 +337,8 @@ static const ActionMapping windows[] = {"startwindow" , WINDOW_START}, {"startup" , WINDOW_STARTUP_ANIM}, {"peripherals" , WINDOW_DIALOG_PERIPHERAL_MANAGER}, - {"peripheralsettings" , WINDOW_DIALOG_PERIPHERAL_SETTINGS}}; + {"peripheralsettings" , WINDOW_DIALOG_PERIPHERAL_SETTINGS}, + {"extendedprogressdialog" , WINDOW_DIALOG_EXT_PROGRESS}}; static const ActionMapping mousecommands[] = { |