~pkunal-parmar/ubuntu-calendar-app/Minor-Performance

« back to all changes in this revision

Viewing changes to NewEvent.qml

  • Committer: Riccardo Padovani
  • Date: 2013-10-07 13:24:09 UTC
  • mfrom: (135 trunk)
  • mto: This revision was merged to the branch mainline in revision 155.
  • Revision ID: rpadovani@ubuntu-it.org-20131007132409-dqrmv4t01zmnfwjj
Updated to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
                title: i18n.tr("Error")
169
169
                text: ""
170
170
                Button {
171
 
                    text: i18n.tr("Ok")
 
171
                    text: i18n.tr("OK")
172
172
                    onClicked: PopupUtils.close(errorPopupDialog)
173
173
                }
174
174
            }
189
189
                        error = 2;
190
190
 
191
191
                    startDate.setDate(defaultDate.getDate());
 
192
                    startDate.setMonth(defaultDate.getMonth());
 
193
                    startDate.setFullYear(defaultDate.getFullYear());
 
194
 
192
195
                    endDate.setDate(defaultDate.getDate());
 
196
                    endDate.setMonth(defaultDate.getMonth());
 
197
                    endDate.setFullYear(defaultDate.getFullYear());
193
198
 
194
199
                    var event = {
195
200
                        title: titleEdit.text,