summaryrefslogtreecommitdiff
path: root/doc/src/declarative/extending-tutorial.qdoc
diff options
context:
space:
mode:
authorMorten Engvoldsen <morten.engvoldsen@nokia.com>2010-11-15 18:34:38 +0100
committerMorten Engvoldsen <morten.engvoldsen@nokia.com>2010-11-15 18:34:38 +0100
commit96b1ea7088f8d541bc4c5fbc87baaf56b0b2fd43 (patch)
tree471b3a22951f4ca5ecec86af8504f5af44197d27 /doc/src/declarative/extending-tutorial.qdoc
parentd0a02d526db09a22da4845e5bae7625cb70b4ef4 (diff)
downloadqt4-tools-96b1ea7088f8d541bc4c5fbc87baaf56b0b2fd43.tar.gz
Doc: Correcting references to Qt Declarative module.
Diffstat (limited to 'doc/src/declarative/extending-tutorial.qdoc')
-rw-r--r--doc/src/declarative/extending-tutorial.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/extending-tutorial.qdoc b/doc/src/declarative/extending-tutorial.qdoc
index 2bfe62ec07..dff1d9caa2 100644
--- a/doc/src/declarative/extending-tutorial.qdoc
+++ b/doc/src/declarative/extending-tutorial.qdoc
@@ -29,7 +29,7 @@
\page qml-extending-tutorial-index.html
\title Tutorial: Writing QML extensions with C++
-The QtDeclarative module provides a set of APIs for extending QML through
+The Qt Declarative module provides a set of APIs for extending QML through
C++ extensions. You can write extensions to add your own QML types, extend existing
Qt types, or call C/C++ functions that are not accessible from ordinary QML code.
@@ -65,7 +65,7 @@ For example, this could be done to implement particular data models, or provide
elements with custom painting and drawing capabilities, or access system features
like network programming that are not accessible through built-in QML features.
-In this tutorial, we will show how to use the C++ classes in the QtDeclarative
+In this tutorial, we will show how to use the C++ classes in the Qt Declarative
module to extend QML. The end result will be a simple Pie Chart display implemented by
several custom QML types connected together through QML features like bindings and
signals, and made available to the QML runtime through a plugin.