Code review comment for lp:~mihirsoni/ubuntu-calendar-app/1295941

Revision history for this message
Mihir Soni (mihirsoni) wrote :

Are we using different separator then ??
i tried (,) and (;) none of them worked.

I guess then instead of doing this.

event.attendees = []; // if Edit remove all attendes & add them again if any
            if( personEdit.text != "") {
                var attendee = Qt.createQmlObject("import QtOrganizer 5.0; EventAttendee{}", event, "NewEvent.qml");
                attendee.name = personEdit.text;
                event.setDetail(attendee);
            }

we need to insert them separately.

« Back to merge proposal