summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-08-02 14:09:31 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-06 14:49:24 +0200
commit636281054cdae8c1fea6f8b5465f333a3fe68db0 (patch)
tree4f8f3ac2ea742f330f9cb15e83d9ef6bdd53900c
parentb365ffa8a9bd7273f9f826087df57e32138b88f5 (diff)
Doc: several updates to the module page.
1)Setting \qtvariable in module page. \qtvariable indicates the QT variable needed in .pro files. 2)WS fixes. Qt Quick 1 is deprecated but it is still nice to update the module page. Change-Id: I5358a03566589a6910469c0bbd4a717e90be1c34 Reviewed-by: Alan Alpert <aalpert@blackberry.com> Reviewed-by: Martin Smith <martin.smith@digia.com>
-rw-r--r--src/doc/src/declarative/qtdeclarative.qdoc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/src/declarative/qtdeclarative.qdoc b/src/doc/src/declarative/qtdeclarative.qdoc
index 69b15821..8b31f659 100644
--- a/src/doc/src/declarative/qtdeclarative.qdoc
+++ b/src/doc/src/declarative/qtdeclarative.qdoc
@@ -29,6 +29,7 @@
\module QtDeclarative
\title Qt Declarative Module
\ingroup modules
+ \qtvariable declarative
\brief The Qt Declarative module provides a declarative framework
for building highly dynamic, custom user interfaces.
@@ -67,7 +68,7 @@
Declares additional properties of the given \a Type as described by the
specified \a Flags.
-
+
Current the only supported type info is \c QML_HAS_ATTACHED_PROPERTIES which
declares that the \a Type supports \l {Attached Properties}.
@@ -112,7 +113,7 @@
qmlRegisterType<MySliderItem>("com.mycompany.qmlcomponents", 1, 0, "Slider");
\endcode
- Once this is registered, the type can be used in QML by importing the
+ Once this is registered, the type can be used in QML by importing the
specified module name and version number:
\qml