diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2016-02-18 09:11:16 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2016-02-18 09:11:16 +0100 |
| commit | 8f014f0915c7bdc97573f953aa9a3ae25a5f953a (patch) | |
| tree | 3a7802c954ba9374dc83f91038a885fc2ddf4118 /rockworkd/libpebble/calendarevent.h | |
| parent | c177b720be89b9bae5b643caa9e84c132ec8f869 (diff) | |
Rockwork 1.0
Diffstat (limited to 'rockworkd/libpebble/calendarevent.h')
| -rw-r--r-- | rockworkd/libpebble/calendarevent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rockworkd/libpebble/calendarevent.h b/rockworkd/libpebble/calendarevent.h index 5361a48..30ce49f 100644 --- a/rockworkd/libpebble/calendarevent.h +++ b/rockworkd/libpebble/calendarevent.h @@ -46,6 +46,9 @@ public: bool recurring() const; void setRecurring(bool recurring); + bool isAllDay() const; + void setIsAllDay(bool isAllDay); + bool operator==(const CalendarEvent &other) const; void saveToCache(const QString &cachePath) const; @@ -64,6 +67,7 @@ private: QString m_comment; QStringList m_guests; bool m_recurring = false; + bool m_isAllDay = false; }; #endif // CALENDAREVENT_H |
