From 94e18c80c63de1572d9a199eb215f7253b590a85 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 29 Apr 2019 23:58:11 +0200 Subject: [PATCH] followscreenings: invert notify behaviour Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/c3a13753f46a63e56b47785dc78ee657f996a441 Author: vanhofen Date: 2019-04-29 (Mon, 29 Apr 2019) Origin message was: ------------------ - followscreenings: invert notify behaviour ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/epgplus.cpp | 2 +- src/gui/epgview.cpp | 2 +- src/gui/eventlist.cpp | 2 +- src/gui/followscreenings.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/epgplus.cpp b/src/gui/epgplus.cpp index d511c2089..44c84c0cf 100644 --- a/src/gui/epgplus.cpp +++ b/src/gui/epgplus.cpp @@ -1524,7 +1524,7 @@ int EpgPlus::MenuTargetAddRecordTimer::exec(CMenuTarget * /*parent*/, const std: CFollowScreenings m(this->epgPlus->selectedChannelEntry->channel->channel_id, (*It)->channelEvent.startTime, (*It)->channelEvent.startTime + (*It)->channelEvent.duration, - (*It)->channelEvent.description, (*It)->channelEvent.eventID, TIMERD_APIDS_CONF, true, "", &evtlist, true); + (*It)->channelEvent.description, (*It)->channelEvent.eventID, TIMERD_APIDS_CONF, true, "", &evtlist); m.exec(NULL, ""); } else diff --git a/src/gui/epgview.cpp b/src/gui/epgview.cpp index b393ce278..fa66356a0 100644 --- a/src/gui/epgview.cpp +++ b/src/gui/epgview.cpp @@ -1143,7 +1143,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start CFollowScreenings m(channel_id, epgData.epg_times.startzeit, epgData.epg_times.startzeit + epgData.epg_times.dauer, - epgData.title, epgData.eventID, TIMERD_APIDS_CONF, true, recDir, &evtlist, true); + epgData.title, epgData.eventID, TIMERD_APIDS_CONF, true, recDir, &evtlist); m.exec(NULL, ""); timeoutEnd = CRCInput::calcTimeoutEnd(timeout); } diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index d2d149778..b5c0082f5 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -529,7 +529,7 @@ int CEventList::exec(const t_channel_id channel_id, const std::string& channelna CFollowScreenings m(used_id, evtlist[selected].startTime, evtlist[selected].startTime + evtlist[selected].duration, - evtlist[selected].description, evtlist[selected].eventID, TIMERD_APIDS_CONF, true, "", &evtlist); + evtlist[selected].description, evtlist[selected].eventID, TIMERD_APIDS_CONF, true, "", &evtlist, false); m.exec(NULL, ""); timeoutEnd = CRCInput::calcTimeoutEnd(timeout); } diff --git a/src/gui/followscreenings.h b/src/gui/followscreenings.h index 1829eb3cb..23191621b 100644 --- a/src/gui/followscreenings.h +++ b/src/gui/followscreenings.h @@ -68,7 +68,7 @@ class CFollowScreenings : public CMenuTarget }; CFollowScreenings(const t_channel_id Channel_id, time_t Starttime, time_t Stoptime, const std::string &Title, uint64_t EpgID=0, - unsigned char Apids=TIMERD_APIDS_STD, bool Safety=false, std::string RecDir="", CChannelEventList *Evtlist=NULL, bool Notify = false) : CMenuTarget () { + unsigned char Apids=TIMERD_APIDS_STD, bool Safety=false, std::string RecDir="", CChannelEventList *Evtlist=NULL, bool Notify = true) : CMenuTarget () { this->channel_id = Channel_id; this->starttime = Starttime; this->stoptime = Stoptime;