diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-12-22 01:35:39 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-12-22 02:24:13 (GMT) |
commit | 22df95289adc5fca59cc0a42cf18e98c5cc433d9 (patch) | |
tree | 73df6d3e5a0ee8c3375f49a972b5e42d0f7d72f0 /doc | |
parent | 960c0f28c5c2a52d28f06d4cfda4f7d46becad93 (diff) | |
download | Qt-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.qdoc | 20 |
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 |