summaryrefslogtreecommitdiff
path: root/mail.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-03-05 20:07:29 +0100
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-03-05 20:07:29 +0100
commiteedb920807a5917ca63c6c8dd7c78e6e4bf2754e (patch)
tree172d4fc718ba7d1b7352e038d2d92d8c80884b01 /mail.h
parent0e3a3840e8daf19e2e8583cc2850a7b88bbf167a (diff)
downloadvdr-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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/mail.h b/mail.h
index 80b5ae1..087c1fa 100644
--- a/mail.h
+++ b/mail.h
@@ -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();
};