~ubuntu-calendar-dev/ubuntu-calendar-app/trunk

« back to all changes in this revision

Viewing changes to calendar.qml

  • Committer: Tarmac
  • Author(s): Olivier Tilloy
  • Date: 2013-08-20 14:15:24 UTC
  • mfrom: (88.1.6 fix-ap-tests-new-event)
  • Revision ID: tarmac-20130820141524-sgeayo243rcgvnvb
Fix failing autopilot tests on devices. Fixes: https://bugs.launchpad.net/bugs/1213084.

Approved by Günter Schwann, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
            tools: ToolbarItems {
23
23
                ToolbarButton {
24
 
                    action: Action {
 
24
                    action: Action {
25
25
                        iconSource: Qt.resolvedUrl("avatar.png")
26
26
                        text: i18n.tr("To-do")
27
27
                        onTriggered:; // FIXME
28
28
                    }
29
29
                }
30
30
                ToolbarButton {
 
31
                    objectName: "neweventbutton"
31
32
                    action: Action {
32
 
                        objectName: "neweventbutton"
33
33
                        iconSource: Qt.resolvedUrl("avatar.png")
34
34
                        text: i18n.tr("New Event")
35
35
                        onTriggered: monthViewPage.newEvent()
36
36
                    }
37
37
                }
38
38
                ToolbarButton {
 
39
                    objectName: "timelinebutton"
39
40
                    action: Action {
40
 
                        objectName: "timelinebutton"
41
41
                        iconSource: Qt.resolvedUrl("avatar.png")
42
42
                        text: i18n.tr("Timeline")
43
43
                        onTriggered: {
52
52
                    }
53
53
                }
54
54
                ToolbarButton {
 
55
                    objectName: "todaybutton"
55
56
                    action: Action {
56
57
                        iconSource: Qt.resolvedUrl("avatar.png");
57
58
                        text: i18n.tr("Today");