diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2016-02-18 09:13:32 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2016-02-18 09:13:32 +0100 |
| commit | f4910b3ac84c72a7e17c99895a3b9abb0e9534fe (patch) | |
| tree | 91ae8cfd80dc3d7a2adedee9cab0d407c5c23c84 /rockworkd/libpebble/calendarevent.h | |
| parent | 7305ce8e080d0a6ee7505fe978a2e601b56a5ce8 (diff) | |
| parent | 8f014f0915c7bdc97573f953aa9a3ae25a5f953a (diff) | |
Merge branch 'rockwork'
Conflicts:
po/de.po
po/en_GB.po
po/eu.po
po/fr.po
po/hu.po
po/it.po
po/pt.po
po/rockwork.mzanetti.pot
po/ru.po
po/template.pot
rockwork/InfoPage.qml
rockwork/Main.qml
rockwork/NotificationsPage.qml
rockworkd/rockworkd.pro
version.pri
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 |
