aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/qml/doc/src/cppintegration/topic.qdoc7
-rw-r--r--src/qml/doc/src/qtqml.qdoc4
-rw-r--r--src/quick/doc/src/qtquick-cpp.qdoc4
-rw-r--r--src/quick/doc/src/qtquick.qdoc4
4 files changed, 14 insertions, 5 deletions
diff --git a/src/qml/doc/src/cppintegration/topic.qdoc b/src/qml/doc/src/cppintegration/topic.qdoc
index 123ab18779..14a27c9a3f 100644
--- a/src/qml/doc/src/cppintegration/topic.qdoc
+++ b/src/qml/doc/src/cppintegration/topic.qdoc
@@ -53,8 +53,11 @@ The \c QML_ELEMENT macro makes the BackEnd class available in QML.
\li Add the following lines to your project file:
-\snippet code/backend/backend.pro registration
-
+\badcode
+CONFIG += qmltypes
+QML_IMPORT_NAME = io.qt.examples.backend
+QML_IMPORT_MAJOR_VERSION = 1
+\endcode
The BackEnd class is automatically registered as a type, which is accessible
from QML by importing the URL, "\c{io.qt.examples.backend 1.0}".
diff --git a/src/qml/doc/src/qtqml.qdoc b/src/qml/doc/src/qtqml.qdoc
index 23f4a81249..e1ff693195 100644
--- a/src/qml/doc/src/qtqml.qdoc
+++ b/src/qml/doc/src/qtqml.qdoc
@@ -75,7 +75,9 @@ See also the \l{Build with CMake} overview.
To configure the module for building with qmake, add the module as a value of the QT variable in the project's .pro file:
-\snippet code/doc_src_qtqml.pro 0
+\badcode
+QT += qml
+\endcode
\section1 QML and QML Types
diff --git a/src/quick/doc/src/qtquick-cpp.qdoc b/src/quick/doc/src/qtquick-cpp.qdoc
index 9a93ee32d9..225a96be0f 100644
--- a/src/quick/doc/src/qtquick-cpp.qdoc
+++ b/src/quick/doc/src/qtquick-cpp.qdoc
@@ -43,7 +43,9 @@
To link against the module, add this line to your \l qmake \c
.pro file:
- \snippet code/doc_src_qtquick.pro 0
+ \badcode
+ QT += quick
+ \endcode
\endif
For more information on the Qt Quick module, see the
diff --git a/src/quick/doc/src/qtquick.qdoc b/src/quick/doc/src/qtquick.qdoc
index 49bd7c5ac1..46dfa5651f 100644
--- a/src/quick/doc/src/qtquick.qdoc
+++ b/src/quick/doc/src/qtquick.qdoc
@@ -81,7 +81,9 @@ See also the \l{Build with CMake} overview.
To configure the module for building with qmake, add the module as a value of
the QT variable in the project's .pro file:
-\snippet code/doc_src_qtquick.pro 0
+\badcode
+QT += quick
+\endcode
\section1 Important Concepts in Qt Quick