diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-03-05 20:07:29 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-03-05 20:07:29 +0100 |
commit | eedb920807a5917ca63c6c8dd7c78e6e4bf2754e (patch) | |
tree | 172d4fc718ba7d1b7352e038d2d92d8c80884b01 /mail.h | |
parent | 0e3a3840e8daf19e2e8583cc2850a7b88bbf167a (diff) | |
download | vdr-plugin-epgsearch-eedb920807a5917ca63c6c8dd7c78e6e4bf2754e.tar.gz vdr-plugin-epgsearch-eedb920807a5917ca63c6c8dd7c78e6e4bf2754e.tar.bz2 |
0.9.24.beta22, %timer.modreason%, no mail when only eventid has changed
Diffstat (limited to 'mail.h')
-rw-r--r-- | mail.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -61,12 +61,13 @@ class cMailTimerNotification { tEventID eventID; tChannelID channelID; + uint timerMod; const cEvent* GetEvent() const; public: - cMailTimerNotification(tEventID EventID, tChannelID ChannelID) - : eventID(EventID), channelID(ChannelID) {} + cMailTimerNotification(tEventID EventID, tChannelID ChannelID, uint TimerMod = tmNoChange) + : eventID(EventID), channelID(ChannelID), timerMod(TimerMod) {} bool operator< (const cMailTimerNotification &N) const; string Format(const string& templ) const; }; @@ -92,7 +93,7 @@ class cMailUpdateNotifier : public cMailNotifier public: cMailUpdateNotifier(); void AddNewTimerNotification(tEventID EventID, tChannelID ChannelID); - void AddModTimerNotification(tEventID EventID, tChannelID ChannelID); + void AddModTimerNotification(tEventID EventID, tChannelID ChannelID, uint timerMod = tmNoChange); void AddRemoveTimerNotification(cTimer* t, const cEvent* e = NULL); void SendUpdateNotifications(); }; |