aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/src/appdevguide
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-04-23 22:19:05 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-23 18:29:25 +0200
commit61b4e90a0fe3d864ac03be2a318d7eec74e3cf0a (patch)
tree4b511a6818a0487acb1ef5bc333c18cee70932e1 /src/quick/doc/src/appdevguide
parent59f075df52f5e78b95b360fb0533c2249924e7a7 (diff)
Doc: Qt Quick: Fix module name format (Pt 2/2)
Follow the conventions at http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation Attempt to differentiate between the whole module ("Qt Quick") and the QML import ("QtQuick") by encoding the latter with monospace font. There are places in the text where both representations are valid. Change-Id: If398304757e0a5106542c09099e1814084e54c5c Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/doc/src/appdevguide')
-rw-r--r--src/quick/doc/src/appdevguide/glossary.qdoc4
-rw-r--r--src/quick/doc/src/appdevguide/porting.qdoc4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/quick/doc/src/appdevguide/glossary.qdoc b/src/quick/doc/src/appdevguide/glossary.qdoc
index 2ece38256f..3c02918576 100644
--- a/src/quick/doc/src/appdevguide/glossary.qdoc
+++ b/src/quick/doc/src/appdevguide/glossary.qdoc
@@ -28,7 +28,7 @@
/*!
\page qtquick-glossary.html
\title Qt Quick Glossary Of Terms
-\brief Glossary of terms used in the documentation for QML and QtQuick
+\brief Glossary of terms used in the documentation for QML and Qt Quick
\section1 Common Terms
@@ -56,7 +56,7 @@
The QML language provides a number of built in
(\l{qtqml-typesystem-basictypes.html}{basic types}), and the
- QtQuick module provides various \l{qtquick-qmltypereference.html}
+ Qt Quick module provides various \l{qtquick-qmltypereference.html}
{Qt Quick types} for building QML applications. Types can also be
provided by third-party developers through
(\l{qtqml-modules-topic.html}{modules}) or by the application
diff --git a/src/quick/doc/src/appdevguide/porting.qdoc b/src/quick/doc/src/appdevguide/porting.qdoc
index c560a5cc08..eac50a9606 100644
--- a/src/quick/doc/src/appdevguide/porting.qdoc
+++ b/src/quick/doc/src/appdevguide/porting.qdoc
@@ -149,7 +149,7 @@ locations. The class name changes are as follows:
\table
\header
\li Qt QML
- \li QtQuick
+ \li Qt Quick
\row
\li
\list
@@ -245,7 +245,7 @@ To use the \c {Qt Quick 1} module, add "quick1" to your qmake \c .pro file:
QT += quick1
\endcode
-Required header files can be included from the QtQuick 1 module:
+Required header files can be included from the Qt Quick 1 module:
\code
#include <QtQuick1/QDeclarativeView>