projects
/
profile
/
ivi
/
qtdeclarative.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git]
/
tests
/
auto
/
qml
/
qqmlqt
/
data
/
point.qml
1
import QtQuick 2.0
2
3
QtObject {
4
property variant test1: Qt.point(19, 34);
5
property variant test2: Qt.point(-3, 109.2);
6
property variant test3: Qt.point(-3);
7
property variant test4: Qt.point(-3, 109.2, 1);
8
}
9