~mihirsoni/ubuntu-calendar-app/dateSelectNewEventTest

« back to all changes in this revision

Viewing changes to calendarTests.qml

  • Committer: Frank Mertens
  • Date: 2013-03-19 18:00:35 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: frank@cyblogic.de-20130319180035-g0cxwlh2ietpn8bj
Added test application calendarTests.qml and improved the data service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 0.1
 
3
import "dataServiceTests.js" as DataServiceTests
 
4
 
 
5
Item {
 
6
    width: units.gu(20)
 
7
    height: units.gu(20)
 
8
    Button {
 
9
        anchors.fill: parent
 
10
        anchors.margins: units.gu(5)
 
11
        text: "Close"
 
12
        onClicked: Qt.quit()
 
13
    }
 
14
}