summaryrefslogtreecommitdiffstats
path: root/common/eventpreprocessor.cpp
diff options
context:
space:
mode:
authorRémi Nicole <nicole@kolabsystems.com>2018-05-14 15:08:39 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-05-14 15:08:59 +0200
commitb11f4d47bb833e0cad14b28b036f63a876dd9bc9 (patch)
treec11679af1d2d64ad4d1e5fc694290f55074cad01 /common/eventpreprocessor.cpp
parent0cb72f6370e6723a1575b6afc0eef9bfd0592738 (diff)
downloadsink-b11f4d47bb833e0cad14b28b036f63a876dd9bc9.tar.gz
sink-b11f4d47bb833e0cad14b28b036f63a876dd9bc9.zip
Add the "allDay" property to Event
Summary: Fixes T8698 Reviewers: cmollekopf Reviewed By: cmollekopf Tags: #sink Maniphest Tasks: T8698 Differential Revision: https://phabricator.kde.org/D12869
Diffstat (limited to 'common/eventpreprocessor.cpp')
-rw-r--r--common/eventpreprocessor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/eventpreprocessor.cpp b/common/eventpreprocessor.cpp
index e087563..9efa541 100644
--- a/common/eventpreprocessor.cpp
+++ b/common/eventpreprocessor.cpp
@@ -47,6 +47,7 @@ void EventPropertyExtractor::updatedIndexedProperties(Event &event, const QByteA
47 event.setExtractedDescription(icalEvent->description()); 47 event.setExtractedDescription(icalEvent->description());
48 event.setExtractedStartTime(icalEvent->dtStart()); 48 event.setExtractedStartTime(icalEvent->dtStart());
49 event.setExtractedEndTime(icalEvent->dtEnd()); 49 event.setExtractedEndTime(icalEvent->dtEnd());
50 event.setExtractedAllDay(icalEvent->allDay());
50} 51}
51 52
52void EventPropertyExtractor::newEntity(Event &event) 53void EventPropertyExtractor::newEntity(Event &event)