summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-12-22 01:35:39 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-12-22 02:24:13 (GMT)
commit22df95289adc5fca59cc0a42cf18e98c5cc433d9 (patch)
tree73df6d3e5a0ee8c3375f49a972b5e42d0f7d72f0 /doc
parent960c0f28c5c2a52d28f06d4cfda4f7d46becad93 (diff)
downloadQt-22df95289adc5fca59cc0a42cf18e98c5cc433d9.zip
Qt-22df95289adc5fca59cc0a42cf18e98c5cc433d9.tar.gz
Qt-22df95289adc5fca59cc0a42cf18e98c5cc433d9.tar.bz2
Add double type to QML Basic Types docs
Diffstat (limited to 'doc')
-rw-r--r--doc/src/declarative/basictypes.qdoc20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/src/declarative/basictypes.qdoc b/doc/src/declarative/basictypes.qdoc
index 034b7d1..939f328 100644
--- a/doc/src/declarative/basictypes.qdoc
+++ b/doc/src/declarative/basictypes.qdoc
@@ -95,6 +95,26 @@
*/
/*!
+ \qmlbasictype double
+ \ingroup qmlbasictypes
+
+ \brief A double number has a decimal point and is stored in double precision.
+
+ A double number has a decimal point and is stored in double precision, \l
+ {http://en.wikipedia.org/wiki/IEEE_754} {IEEE floating point}
+ format.
+
+ Example:
+ \qml
+ Item {
+ property double number: 32155.2355
+ }
+ \endqml
+
+ \sa {QML Basic Types}
+*/
+
+/*!
\qmlbasictype string
\ingroup qmlbasictypes