diff options
Diffstat (limited to 'menu_searchresults.c')
-rw-r--r-- | menu_searchresults.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/menu_searchresults.c b/menu_searchresults.c index b6511b9..6c7c261 100644 --- a/menu_searchresults.c +++ b/menu_searchresults.c @@ -77,7 +77,7 @@ bool cMenuSearchResultsItem::Update(bool Force) bool result = false; - int OldTimerMatch = timerMatch; + eTimerMatch OldTimerMatch = timerMatch; bool OldInSwitchList = inSwitchList; bool hasMatch = false; cTimer* timer = NULL; @@ -176,7 +176,7 @@ cMenuSearchResultsItem::cMenuSearchResultsItem(cRecording *Recording) previewTimer = false; episodeOnly = false; menuTemplate = NULL; - timerMatch = 0; + timerMatch = tmNone; inSwitchList = false; event = NULL; search = NULL; @@ -228,7 +228,7 @@ eOSState cMenuSearchResults::Record(void) if (item) { if (item->timerMatch == tmFull) { - int tm = tmNone; + eTimerMatch tm = tmNone; cTimer *timer = Timers.GetMatch(item->event, &tm); if (timer) { |