Neutrino timerlist: sort timer type chooser alphabetically

Signed-off-by: Christian Schuett <Gaucho316@hotmail.com>
Signed-off-by: Thilo Graf <dbt@novatux.de>


Origin commit data
------------------
Commit: 7f9dcb64b0
Author: Gaucho316 <Gaucho316@hotmail.com>
Date: 2014-01-19 (Sun, 19 Jan 2014)
This commit is contained in:
Gaucho316
2014-01-19 14:38:59 +01:00
committed by Jacek Jendrzej
parent de3d735a99
commit 88c27e6c96
2 changed files with 2 additions and 2 deletions

View File

@@ -2195,7 +2195,7 @@ timerlist.standby SB mode
timerlist.standby.off Leave standby timerlist.standby.off Leave standby
timerlist.standby.on Enter standby timerlist.standby.on Enter standby
timerlist.stoptime Stop time timerlist.stoptime Stop time
timerlist.type Timer typ timerlist.type Timer type
timerlist.type.execplugin Execute plugin timerlist.type.execplugin Execute plugin
timerlist.type.nextprogram Next program timerlist.type.nextprogram Next program
timerlist.type.record Record timerlist.type.record Record

View File

@@ -1227,7 +1227,7 @@ int CTimerList::newTimer()
&timerSettings_stopTime.getValue()); &timerSettings_stopTime.getValue());
CMenuOptionChooser* m0; CMenuOptionChooser* m0;
if (g_settings.recording_type != CNeutrinoApp::RECORDING_OFF) if (g_settings.recording_type != CNeutrinoApp::RECORDING_OFF)
m0 = new CMenuOptionChooser(LOCALE_TIMERLIST_TYPE, (int *)&timerNew.eventType, TIMERLIST_TYPE_OPTIONS, TIMERLIST_TYPE_OPTION_COUNT, true, &notifier2); m0 = new CMenuOptionChooser(LOCALE_TIMERLIST_TYPE, (int *)&timerNew.eventType, TIMERLIST_TYPE_OPTIONS, TIMERLIST_TYPE_OPTION_COUNT, true, &notifier2, CRCInput::RC_nokey, "", false, true);
else else
m0 = new CMenuOptionChooser(LOCALE_TIMERLIST_TYPE, (int *)&timerNew.eventType, &TIMERLIST_TYPE_OPTIONS[1], TIMERLIST_TYPE_OPTION_COUNT-1, true, &notifier2); m0 = new CMenuOptionChooser(LOCALE_TIMERLIST_TYPE, (int *)&timerNew.eventType, &TIMERLIST_TYPE_OPTIONS[1], TIMERLIST_TYPE_OPTION_COUNT-1, true, &notifier2);