- icons: better names for currently unused NEUTRINO_ICON_MARKER_RECORD

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-01-05 00:52:58 +01:00
committed by Thilo Graf
parent 28d4e97a34
commit 7f75dba90c
4 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ install_DATA = \
marker_hidden.png \ marker_hidden.png \
marker_lock.png \ marker_lock.png \
marker_radio.png \ marker_radio.png \
marker_rec_event.png \ marker_record.png \
marker_scrambled.png \ marker_scrambled.png \
marker_streaming.png \ marker_streaming.png \
marker_tv.png \ marker_tv.png \

View File

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 833 B

View File

@@ -797,7 +797,7 @@ void CEventList::paintItem(unsigned int pos, t_channel_id channel_idI)
CTimerd::CTimerEventTypes etype = isScheduled(channel_tmp, &evtlist[currpos],&timerID); CTimerd::CTimerEventTypes etype = isScheduled(channel_tmp, &evtlist[currpos],&timerID);
const char * icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_ZAP : 0; const char * icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_ZAP : 0;
if(etype == CTimerd::TIMER_RECORD){ if(etype == CTimerd::TIMER_RECORD){
icontype = NEUTRINO_ICON_REC;// NEUTRINO_ICON_MARKER_RECORDING_EVENT icontype = NEUTRINO_ICON_REC;// NEUTRINO_ICON_MARKER_RECORD
}else{ }else{
if (timerID > 0 && CRecordManager::getInstance()->CheckRecordingId_if_Timeshift(timerID)) if (timerID > 0 && CRecordManager::getInstance()->CheckRecordingId_if_Timeshift(timerID))
icontype = NEUTRINO_ICON_AUTO_SHIFT; icontype = NEUTRINO_ICON_AUTO_SHIFT;

View File

@@ -256,7 +256,7 @@
#define NEUTRINO_ICON_MARKER_STREAMING "marker_streaming" #define NEUTRINO_ICON_MARKER_STREAMING "marker_streaming"
#define NEUTRINO_ICON_MARKER_TV "marker_tv" #define NEUTRINO_ICON_MARKER_TV "marker_tv"
#define NEUTRINO_ICON_MARKER_SCRAMBLED "marker_scrambled" #define NEUTRINO_ICON_MARKER_SCRAMBLED "marker_scrambled"
#define NEUTRINO_ICON_MARKER_RECORDING_EVENT "rec_event_marker" #define NEUTRINO_ICON_MARKER_RECORD "marker_record"
/* plugins */ /* plugins */
#define NEUTRINO_ICON_HINT_PLUGIN "hint_plugin" #define NEUTRINO_ICON_HINT_PLUGIN "hint_plugin"