Navigation Menu

Skip to content

Commit

Permalink
Add constants to person
Browse files Browse the repository at this point in the history
  • Loading branch information
pvuorela committed May 17, 2019
1 parent 8d222b2 commit e539f3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/calendareventquery.h
Expand Up @@ -47,10 +47,10 @@ class Person : public QObject
{
Q_OBJECT
Q_ENUMS(AttendeeRole)
Q_PROPERTY(QString name READ name FINAL)
Q_PROPERTY(QString email READ email FINAL)
Q_PROPERTY(bool isOrganizer READ isOrganizer FINAL)
Q_PROPERTY(int participationRole READ participationRole FINAL)
Q_PROPERTY(QString name READ name CONSTANT FINAL)
Q_PROPERTY(QString email READ email CONSTANT FINAL)
Q_PROPERTY(bool isOrganizer READ isOrganizer CONSTANT FINAL)
Q_PROPERTY(int participationRole READ participationRole CONSTANT FINAL)

public:
// mapping to KCalcore::Attendee::Role
Expand Down

0 comments on commit e539f3f

Please sign in to comment.