diff options
author | Rémi Nicole <nicole@kolabsystems.com> | 2018-04-13 11:51:18 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-13 11:51:24 +0200 |
commit | cd81aed814286887911d99648d62bbb3c63e404c (patch) | |
tree | c98b6e65d56e5fff82ed8f8a431de47e149c38a1 /common/domain | |
parent | edbb4c9c82e34e90ad15ad151901e65c2c2cfb66 (diff) | |
download | sink-cd81aed814286887911d99648d62bbb3c63e404c.tar.gz sink-cd81aed814286887911d99648d62bbb3c63e404c.zip |
Change most of Event's properties to extracted properties
Summary: Fix T8485
Reviewers: cmollekopf
Reviewed By: cmollekopf
Tags: #sink
Maniphest Tasks: T8485
Differential Revision: https://phabricator.kde.org/D12106
Diffstat (limited to 'common/domain')
-rw-r--r-- | common/domain/applicationdomaintype.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index 43d385c..f3c954a 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h | |||
@@ -396,11 +396,11 @@ struct SINK_EXPORT Calendar : public Entity { | |||
396 | 396 | ||
397 | struct SINK_EXPORT Event : public Entity { | 397 | struct SINK_EXPORT Event : public Entity { |
398 | SINK_ENTITY(Event, event); | 398 | SINK_ENTITY(Event, event); |
399 | SINK_PROPERTY(QString, Uid, uid); | 399 | SINK_EXTRACTED_PROPERTY(QString, Uid, uid); |
400 | SINK_PROPERTY(QString, Summary, summary); | 400 | SINK_EXTRACTED_PROPERTY(QString, Summary, summary); |
401 | SINK_PROPERTY(QString, Description, description); | 401 | SINK_EXTRACTED_PROPERTY(QString, Description, description); |
402 | SINK_PROPERTY(QDateTime, StartTime, startTime); | 402 | SINK_EXTRACTED_PROPERTY(QDateTime, StartTime, startTime); |
403 | SINK_PROPERTY(QDateTime, EndTime, endTime); | 403 | SINK_EXTRACTED_PROPERTY(QDateTime, EndTime, endTime); |
404 | SINK_PROPERTY(QByteArray, Ical, ical); | 404 | SINK_PROPERTY(QByteArray, Ical, ical); |
405 | SINK_REFERENCE_PROPERTY(Calendar, Calendar, calendar); | 405 | SINK_REFERENCE_PROPERTY(Calendar, Calendar, calendar); |
406 | }; | 406 | }; |