summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-11-24 08:50:12 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-11-24 08:50:12 (GMT)
commitcaca740ea1219227008c303b5f2fac24af5a62a0 (patch)
treefd5908b8e7accaca33697c98ccd7cb9a6ea84157 /doc
parent236e57bc9d85c4b05514dd3b792bf8e144320023 (diff)
parent5149da5a564c883209566f3baaeea15932eee1c2 (diff)
downloadQt-caca740ea1219227008c303b5f2fac24af5a62a0.zip
Qt-caca740ea1219227008c303b5f2fac24af5a62a0.tar.gz
Qt-caca740ea1219227008c303b5f2fac24af5a62a0.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix incorrect example for Qt.rgba() Flickable and MouseArea were too eager to take/keep mouse grab. Allow javascript date and regexp objects in WorkerScript messages Avoid lockup in ListView when animating delegates. Fix asynchronous reload call in test, broken by previous submit Update QtGui emulator def file for bug QT-3971 Ignore .pc/ Ensure WebView press delay timer is cancelled when grab is taken. Prevent crash when calling reload() from within a .qml
Diffstat (limited to 'doc')
-rw-r--r--doc/src/declarative/basictypes.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/declarative/basictypes.qdoc b/doc/src/declarative/basictypes.qdoc
index 8ab06ab..71192bf 100644
--- a/doc/src/declarative/basictypes.qdoc
+++ b/doc/src/declarative/basictypes.qdoc
@@ -166,7 +166,7 @@
\l{QML:Qt::lighter()}{Qt.lighter()} or \l{QML:Qt::tint()}{Qt.tint()} functions:
\qml
- Rectangle { color: Qt.rgba(255, 0, 0, 1) }
+ Rectangle { color: Qt.rgba(0.5, 0.5, 0, 1) }
\endqml
\sa {QML Basic Types}