aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2017-03-29 12:25:37 +0200
committerNico Vertriest <nico.vertriest@qt.io>2017-03-30 10:39:42 +0000
commitf720bc8e38dfdc14c48ffe3178a704f5d130f932 (patch)
tree112c5cbad3c5185b34eea1ce3112cef97ba15a99
parenta18c61b8d3626ae15d9f26fe7d34195a0d320839 (diff)
Doc: Correct two link errorsv5.9.0-beta1
qtquickcontrols2-customize.qdoc:28: Can't link to 'Creating Qt Quick Projects' qtquickcontrols2-customize.qdoc:28: warning: Can't link to 'Creating C++ Classes' Change-Id: I5ddc57215fd65fa6a80819ee694b5e031676f5a7 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc b/src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc
index 633fb217..c2b1e640 100644
--- a/src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc
+++ b/src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc
@@ -200,9 +200,9 @@
style will illustrate the elevation with a drop shadow; the higher the
elevation, the larger the shadow.
- The first step is to \l {Creating Qt Quick Projects}{create a new Qt Quick
+ The first step is to \l {Qt Creator: Creating Qt Quick Projects}{create a new Qt Quick
Controls 2 application} in Qt Creator. After that, we
- \l {Creating C++ Classes}{add a C++ type} that stores the elevation. Since
+ \l {Qt Creator: Creating C++ Classes}{add a C++ type} that stores the elevation. Since
the type will be used for every control supported by our style, and because
we may wish to add other attached properties later on, we'll call it
MyStyle. Here is \c MyStyle.h: