~thomir-deactivatedaccount/ubuntu-calendar-app/trunk-fix-ugly-bits

« back to all changes in this revision

Viewing changes to NewEvent.qml

  • Committer: Kunal Parmar
  • Date: 2013-10-11 11:08:47 UTC
  • mto: This revision was merged to the branch mainline in revision 148.
  • Revision ID: pkunal.parmar@gmail.com-20131011110847-uoabd5zh1lpcl4zj
Icons added

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
            objectName: "eventCancelButton"
40
40
            action: Action {
41
41
                text: i18n.tr("Cancel");
 
42
                iconSource: Qt.resolvedUrl("cancel.svg");
42
43
                onTriggered: {
43
44
                    pageStack.pop();
44
45
                }
49
50
            objectName: "eventSaveButton"
50
51
            action: Action {
51
52
                text: i18n.tr("Save");
 
53
                iconSource: Qt.resolvedUrl("save.svg");
52
54
                onTriggered: {
53
55
                    saveEvent();
54
56
                    pageStack.pop();