aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/src/cppintegration/definetypes.qdoc
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-04-22 19:49:30 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-24 14:18:12 +0200
commit9baaeba10184c908267e1332d6ec4329d6a71fd3 (patch)
tree188a5f00ff5b79f51afaa29468539dd1b70a8e7b /src/qml/doc/src/cppintegration/definetypes.qdoc
parentb1a321a1d7762e8c20e244164bd42822c3bd0310 (diff)
Doc: Un-overload the word "module"
"The Qt Quick module contains the QtQuick QML module and the Qt Quick C++ module" is an odd way to describe things. The concept of a "QML module" is deeply entrenched so this patch won't touch it, but at least we can get rid of references to "C++ module"s. Change-Id: Ib06f8e3152551901dc6016cb37507cb9608d7863 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/qml/doc/src/cppintegration/definetypes.qdoc')
-rw-r--r--src/qml/doc/src/cppintegration/definetypes.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/doc/src/cppintegration/definetypes.qdoc b/src/qml/doc/src/cppintegration/definetypes.qdoc
index 1aab159deb..995fb1bce8 100644
--- a/src/qml/doc/src/cppintegration/definetypes.qdoc
+++ b/src/qml/doc/src/cppintegration/definetypes.qdoc
@@ -680,8 +680,8 @@ to be declared for an item without explicitly assigning them to the
When building user interfaces with the \l {Qt Quick} module, all QML objects that are
to be visually rendered must derive from the \l Item type, as it is the base
type for all visual objects in \l {Qt Quick}. This \l Item type is
-implemented by the QQuickItem C++ class, which is provided as part of the
-\l {Qt Quick} C++ module. Therefore, this class should be subclassed when it is
+implemented by the QQuickItem C++ class, which is provided by the
+\l {Qt Quick} module. Therefore, this class should be subclassed when it is
necessary to implement a visual type in C++ that can be integrated into a
QML-based user interface.