diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2011-09-22 19:43:08 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2011-09-22 19:43:08 +0200 |
commit | eff341390c079060d0904a53b7eebe84e2315f3a (patch) | |
tree | d45d902e7a7022a95a3e9c58346d88c45e0da517 /pending_notifications.h | |
parent | be2c5ff1bfdff45d384981816ef692f0179a7f15 (diff) | |
download | vdr-plugin-epgsearch-eff341390c079060d0904a53b7eebe84e2315f3a.tar.gz vdr-plugin-epgsearch-eff341390c079060d0904a53b7eebe84e2315f3a.tar.bz2 |
Delete trailing whitespace, thanks to Ville Skyttä for patches
Diffstat (limited to 'pending_notifications.h')
-rw-r--r-- | pending_notifications.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pending_notifications.h b/pending_notifications.h index f32669f..a6c291b 100644 --- a/pending_notifications.h +++ b/pending_notifications.h @@ -37,19 +37,19 @@ public: time_t start; uint timerMod; int searchID; - string formatted; + string formatted; static char *buffer; - + cPendingNotification() : type(-1), start(-1), timerMod(-1), searchID(-1) {} - cPendingNotification(int Type, tEventID EventID, tChannelID ChannelID, time_t Start, uint TimerMod = -1, + cPendingNotification(int Type, tEventID EventID, tChannelID ChannelID, time_t Start, uint TimerMod = -1, int SearchID = -1, string Formatted = "") - : type(Type), eventID(EventID), channelID(ChannelID), start(Start), timerMod(TimerMod), + : type(Type), eventID(EventID), channelID(ChannelID), start(Start), timerMod(TimerMod), searchID(SearchID), formatted(Formatted) {} ~cPendingNotification(); - + static bool Read(FILE *f); bool Parse(const char *s); const char *ToText(void) const; |