diff options
author | louis <louis.braun@gmx.de> | 2013-07-20 13:46:26 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-07-20 13:46:26 +0200 |
commit | 34f8460e254e2eb7fae1aafcf7c94ca2c3c38b02 (patch) | |
tree | 4de3005a27c4f6e584c9c1d2bdff2de97ff65911 /recmenumanager.c | |
parent | 9f351151edaf8195446b591ab9ac1d43f038c7ca (diff) | |
download | vdr-plugin-tvguide-34f8460e254e2eb7fae1aafcf7c94ca2c3c38b02.tar.gz vdr-plugin-tvguide-34f8460e254e2eb7fae1aafcf7c94ca2c3c38b02.tar.bz2 |
Added remotetimers support
Diffstat (limited to 'recmenumanager.c')
-rw-r--r-- | recmenumanager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recmenumanager.c b/recmenumanager.c index 17d89ec..0e4871d 100644 --- a/recmenumanager.c +++ b/recmenumanager.c @@ -38,7 +38,7 @@ void cRecMenuManager::Start(const cEvent *event) { detailViewActive = false;
SetBackground();
this->event = event;
- activeMenu = new cRecMenuMain(recManager->EpgSearchAvailable(), event->HasTimer(), SwitchTimers.EventInSwitchList(event));
+ activeMenu = new cRecMenuMain(recManager->EpgSearchAvailable(), recManager->CheckEventForTimer(event), SwitchTimers.EventInSwitchList(event));
activeMenu->Display();
osdManager.flush();
}
@@ -180,7 +180,7 @@ eOSState cRecMenuManager::StateMachine(eRecMenuState nextState) { break;
case rmsEditTimer: {
//edit timer for active event
- timer = Timers.GetMatch(event);
+ timer = recManager->GetTimerForEvent(event);
if (timer) {
delete activeMenu;
activeMenu = new cRecMenuEditTimer(timer, rmsSaveTimer);
|