diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2012-12-08 20:24:28 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-12-08 20:24:28 +0100 |
commit | 1a055e2b409eec52dc75641c436605712af14a49 (patch) | |
tree | 266cb7fcf1b5052f4e9dae2c656a149fdb0502a0 /menu_searchresults.c | |
parent | 40cbbbece4eb9b49e08976a32865c2c5e93aced0 (diff) | |
download | vdr-plugin-epgsearch-1a055e2b409eec52dc75641c436605712af14a49.tar.gz vdr-plugin-epgsearch-1a055e2b409eec52dc75641c436605712af14a49.tar.bz2 |
support for vdr-1.7.33, thanks for a patch provided by Wolfgang Rohdewald
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) { |