summaryrefslogtreecommitdiff
path: root/pending_notifications.h
diff options
context:
space:
mode:
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;