summaryrefslogtreecommitdiff
path: root/pending_notifications.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger@gmx.de>2011-09-22 19:43:08 +0200
committerChristian Wieninger <cwieninger@gmx.de>2011-09-22 19:43:08 +0200
commiteff341390c079060d0904a53b7eebe84e2315f3a (patch)
treed45d902e7a7022a95a3e9c58346d88c45e0da517 /pending_notifications.h
parentbe2c5ff1bfdff45d384981816ef692f0179a7f15 (diff)
downloadvdr-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.h10
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;