summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-05-06 07:44:41 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-05-06 07:44:41 (GMT)
commit4697a2b50df7135e1da0917676652bcc12abab2a (patch)
treea7788f62bcee2a4d8f738aa1f5b39d1355380a6d /doc
parenta0ff96a8fd1cbf1206afd12e0062949fa035f64f (diff)
parentd1ab59da5de38ce0df0e6b9961fc5bf6580e5607 (diff)
downloadQt-4697a2b50df7135e1da0917676652bcc12abab2a.zip
Qt-4697a2b50df7135e1da0917676652bcc12abab2a.tar.gz
Qt-4697a2b50df7135e1da0917676652bcc12abab2a.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Conflicts: src/declarative/graphicsitems/qdeclarativepainteditem.cpp
Diffstat (limited to 'doc')
-rw-r--r--doc/src/declarative/elements.qdoc12
-rw-r--r--doc/src/snippets/declarative/drag.qml2
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/src/declarative/elements.qdoc b/doc/src/declarative/elements.qdoc
index 79fe909..574a187 100644
--- a/doc/src/declarative/elements.qdoc
+++ b/doc/src/declarative/elements.qdoc
@@ -120,11 +120,22 @@ The following table lists the QML elements provided by the \l {QtDeclarative}{Qt
\list
\o \l Item
\o \l Rectangle
+ \list
+ \o \l Gradient
+ \list
+ \o \l GradientStop
+ \endlist
+ \endlist
\o \l Image
\o \l BorderImage
\o \l AnimatedImage
\o \l Text
\o \l TextInput
+ \list
+ \o \l IntValidator
+ \o \l DoubleValidator
+ \o \l RegExpValidator
+ \endlist
\o \l TextEdit
\endlist
@@ -142,6 +153,7 @@ The following table lists the QML elements provided by the \l {QtDeclarative}{Qt
\o \l Loader
\o \l Repeater
\o \l SystemPalette
+\o \l FontLoader
\o \l LayoutItem
\endlist
diff --git a/doc/src/snippets/declarative/drag.qml b/doc/src/snippets/declarative/drag.qml
index 9465efb..79469e3 100644
--- a/doc/src/snippets/declarative/drag.qml
+++ b/doc/src/snippets/declarative/drag.qml
@@ -9,7 +9,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
drag.target: pic
- drag.axis: "XAxis"
+ drag.axis: Drag.XAxis
drag.minimumX: 0
drag.maximumX: blurtest.width-pic.width
}