~pkunal-parmar/ubuntu-calendar-app/ICalImport

« back to all changes in this revision

Viewing changes to MonthView.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2014-09-19 10:36:39 UTC
  • mto: (455.4.5 2-weekview)
  • mto: This revision was merged to the branch mainline in revision 459.
  • Revision ID: krnekhelesh@gmail.com-20140919103639-0ypvg5xwlnh3ld0h
Just fixed the code indentation. No other change

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    signal dateSelected(var date);
31
31
 
32
32
    Keys.forwardTo: [monthViewPath]
 
33
 
33
34
    Action {
34
 
           id: calendarTodayAction
35
 
           objectName:"todaybutton"
36
 
           iconName: "calendar-today"
37
 
           text: i18n.tr("Today")
38
 
           onTriggered: {
39
 
               currentMonth = new Date().midnight()
40
 
           }
41
 
       }
 
35
        id: calendarTodayAction
 
36
        objectName:"todaybutton"
 
37
        iconName: "calendar-today"
 
38
        text: i18n.tr("Today")
 
39
        onTriggered: {
 
40
            currentMonth = new Date().midnight()
 
41
        }
 
42
    }
42
43
 
43
 
       head.actions: [
44
 
           calendarTodayAction,
45
 
           commonHeaderActions.newEventAction,
46
 
           commonHeaderActions.showCalendarAction,
47
 
           commonHeaderActions.reloadAction
48
 
       ]
 
44
    head.actions: [
 
45
        calendarTodayAction,
 
46
        commonHeaderActions.newEventAction,
 
47
        commonHeaderActions.showCalendarAction,
 
48
        commonHeaderActions.reloadAction
 
49
    ]
49
50
 
50
51
    PathViewBase{
51
52
        id: monthViewPath