summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@qt.io>2019-10-31 19:10:24 +0100
committerRobert Griebl <robert.griebl@qt.io>2019-11-05 14:57:14 +0100
commit18bf370fb0e510fb3ed516818f793523153204bb (patch)
tree1d6ebb58fa5920aca46fb9c795b1fbe2691e390a /examples
parent49f2f18c822d5ad9ec25b696aa62d0be5823a511 (diff)
downloadqtapplicationmanager-18bf370fb0e510fb3ed516818f793523153204bb.tar.gz
Fix qdoc warnings
Change-Id: Id2292a3c656bbe07944231a98a39bee9045eb861 Reviewed-by: Dominik Holland <dominik.holland@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/applicationmanager/application-features/doc/src/application-features.qdoc6
-rw-r--r--examples/applicationmanager/custom-appman/doc/src/custom-appman.qdoc2
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/applicationmanager/application-features/doc/src/application-features.qdoc b/examples/applicationmanager/application-features/doc/src/application-features.qdoc
index 17abff0c..78eb57b2 100644
--- a/examples/applicationmanager/application-features/doc/src/application-features.qdoc
+++ b/examples/applicationmanager/application-features/doc/src/application-features.qdoc
@@ -91,7 +91,7 @@ The QML code for the crash simulation and recovery application is as follows:
\quotefromfile applicationmanager/application-features/apps/crash/crashapp.qml
\skipto import QtQuick 2.11
\printuntil case "gracefully": Terminator.exitGracefully(); break;
-\printuntil } } } } } } }
+\printuntil /^\}/
\section2 Two Top-Level Windows
@@ -103,7 +103,7 @@ The QML code for the two top-level windows application is as follows:
\quotefromfile applicationmanager/application-features/apps/twins/twins.qml
\skipto import QtQuick 2.11
\printuntil Component.onCompleted: setWindowProperty("type", "pop-up");
-\printuntil } } }
+\printuntil /^\}/
\section2 Native Widgets
@@ -120,7 +120,7 @@ The C++ code for the native widgets application is as follows:
\quotefromfile applicationmanager/application-features/native/widgets/main.cpp
\skipto #include <QApplication>
-\printuntil return app.exec(); }
+\printuntil /^\}/
\section1 Code Structure
diff --git a/examples/applicationmanager/custom-appman/doc/src/custom-appman.qdoc b/examples/applicationmanager/custom-appman/doc/src/custom-appman.qdoc
index 7aed03bb..4edcc3fb 100644
--- a/examples/applicationmanager/custom-appman/doc/src/custom-appman.qdoc
+++ b/examples/applicationmanager/custom-appman/doc/src/custom-appman.qdoc
@@ -69,7 +69,7 @@ Generally, it's a good idea to set an application name and version.
We want the application manager's logging part to be initialized as early as possible, especially
when we are dealing with DLT logging.
-\printline Package::ensure
+\printline PackageUtilities::ensure
If you are using the application manager's installer part, this function needs to be called
\e before the QApplication constructor to make sure that your C locale is a UTF-8 variant. This is