~ubuntu-branches/ubuntu/saucy/qtdeclarative-opensource-src/saucy

« back to all changes in this revision

Viewing changes to tests/auto/quick/touchmouse/data/singleitem.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Qt.test 1.0
 
3
 
 
4
Rectangle {
 
5
    id: root
 
6
    width: 320
 
7
    height: 480
 
8
    color: "green"
 
9
 
 
10
    EventItem {
 
11
        objectName: "eventItem1"
 
12
        x: 5
 
13
        y: 5
 
14
        height: 30
 
15
        width: 30
 
16
    }
 
17
}
 
18