summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2021-10-19 13:26:35 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-03-21 14:03:03 +0000
commit3946f396055762819b1e3aaf4c766ff6bb9f9b4e (patch)
tree7486ac3f0f70b7c82db55130709eb2661d517b0e
parentf2a2a1120c3c87f9f21196267b0ea4a584f1dc89 (diff)
downloadqtapplicationmanager-3946f396055762819b1e3aaf4c766ff6bb9f9b4e.tar.gz
Doc: Adjust title of Hello Word example
An example title starting with punctuation makes the example appear as the first one in Qt Creator's Welcome mode; this is not desired for this example, so rename its title. Task-number: QTBUG-100139 Change-Id: Iff725a90e0f5c411c1d87d19c34453b69e78bb9c Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io> (cherry picked from commit a19a7db2326b02df3831b40406ec00d0e33f00d4) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--doc/migration-guide-5.12.qdoc2
-rw-r--r--examples/applicationmanager/animated-windows/doc/src/animated-windows.qdoc4
-rw-r--r--examples/applicationmanager/hello-world/doc/src/hello-world.qdoc2
-rw-r--r--examples/applicationmanager/intents/doc/src/intents.qdoc2
-rw-r--r--examples/applicationmanager/launch-intents/doc/src/launch-intents.qdoc4
-rw-r--r--examples/applicationmanager/process-status/doc/src/process-status-example.qdoc4
6 files changed, 9 insertions, 9 deletions
diff --git a/doc/migration-guide-5.12.qdoc b/doc/migration-guide-5.12.qdoc
index 70799498..9d10d665 100644
--- a/doc/migration-guide-5.12.qdoc
+++ b/doc/migration-guide-5.12.qdoc
@@ -155,7 +155,7 @@ WindowItem {
}
\endcode
-See the new \l{"Hello World!" System UI Example}{Hello World} and \l{Animated Windows System UI Example}{Animated Windows}
+See the new \l{System UI Example: "Hello World!"}{Hello World} and \l{Animated Windows System UI Example}{Animated Windows}
examples for further explanations on the new way of manipulating windows in your System UI.
\section2 WindowManager signals
diff --git a/examples/applicationmanager/animated-windows/doc/src/animated-windows.qdoc b/examples/applicationmanager/animated-windows/doc/src/animated-windows.qdoc
index e6d0a356..95eca0df 100644
--- a/examples/applicationmanager/animated-windows/doc/src/animated-windows.qdoc
+++ b/examples/applicationmanager/animated-windows/doc/src/animated-windows.qdoc
@@ -40,9 +40,9 @@
This example shows you how to animate windows to appear and disappear, in a System UI.
\b Prerequisites: You're already familiar with the concepts and topics introduced in the
- \l {"Hello World!" System UI Example}.
+ \l {System UI Example: "Hello World!"}.
-Unlike with the \l{"Hello World!" System UI Example}{Hello World} example, most Graphical User
+Unlike with the \l{System UI Example: "Hello World!"}{Hello World} example, most Graphical User
Interfaces (GUIs) avoid making sudden, abrupt, changes as they can confuse the user and are not
visually pleasant. So, when the WindowManager creates a new WindowObject, we want to animate its
appearance instead of simply having it pop up on the screen. Likewise, once a WindowObject loses
diff --git a/examples/applicationmanager/hello-world/doc/src/hello-world.qdoc b/examples/applicationmanager/hello-world/doc/src/hello-world.qdoc
index 399766c2..ec498b3b 100644
--- a/examples/applicationmanager/hello-world/doc/src/hello-world.qdoc
+++ b/examples/applicationmanager/hello-world/doc/src/hello-world.qdoc
@@ -32,7 +32,7 @@
\example applicationmanager/hello-world
\brief Learn how to write your first System UI.
\ingroup applicationmanager-examples
-\title "Hello World!" System UI Example
+\title System UI Example: "Hello World!"
\image hello-world-example.png The Hello World example with two applications running.
\section1 Introduction
diff --git a/examples/applicationmanager/intents/doc/src/intents.qdoc b/examples/applicationmanager/intents/doc/src/intents.qdoc
index e60a4fe4..53415e61 100644
--- a/examples/applicationmanager/intents/doc/src/intents.qdoc
+++ b/examples/applicationmanager/intents/doc/src/intents.qdoc
@@ -38,7 +38,7 @@
\section1 Introduction
This example shows how the System UI and applications can send and receive Intents. Similar to the
-\l{"Hello World!" System UI Example}, the window management aspect is kept to a minimum to focus
+\l{System UI Example: "Hello World!"}, the window management aspect is kept to a minimum to focus
only on Intents: the 2x2 grid on the right will always show the System UI part (gray) in the
top-left corner, while the three apps (red, green and blue) will dynamically occupy the other
corner in the order they are started. You can see the names and icons for the available
diff --git a/examples/applicationmanager/launch-intents/doc/src/launch-intents.qdoc b/examples/applicationmanager/launch-intents/doc/src/launch-intents.qdoc
index 94ee25dd..52d75402 100644
--- a/examples/applicationmanager/launch-intents/doc/src/launch-intents.qdoc
+++ b/examples/applicationmanager/launch-intents/doc/src/launch-intents.qdoc
@@ -38,10 +38,10 @@
This example shows you how to use intents as a basis for a launcher in a System UI.
\b Prerequisites: You're already familiar with the concepts and topics introduced in the
- \l {"Hello World!" System UI Example}. This example uses the same folder structure and can be
+ \l {System UI Example: "Hello World!"}. This example uses the same folder structure and can be
started in the same way.
-Unlike the \l{"Hello World!" System UI Example}{Hello World} example, we are not using the
+Unlike the \l{System UI Example: "Hello World!"}{Hello World} example, we are not using the
ApplicationObject abstraction layer directly to launch appliations, but instead we are using
\c launch intents registered by the packages. This way we can have multiple icons in a launcher
that can start the same application, triggering different functionality within the application.
diff --git a/examples/applicationmanager/process-status/doc/src/process-status-example.qdoc b/examples/applicationmanager/process-status/doc/src/process-status-example.qdoc
index 5cfc5a75..b648664b 100644
--- a/examples/applicationmanager/process-status/doc/src/process-status-example.qdoc
+++ b/examples/applicationmanager/process-status/doc/src/process-status-example.qdoc
@@ -39,10 +39,10 @@
This example shows you how to use the \l ProcessStatus component to display information about
an application's process. It is based on the simpler
-\l{"Hello World!" System UI Example}{Hello World}.
+\l{System UI Example: "Hello World!"}{Hello World}.
\b Prerequisites: You're already familiar with the concepts and topics introduced in the
- \l {"Hello World!" System UI Example}.
+ \l {System UI Example: "Hello World!"}.
On the left, the built-in applications are listed in a column, where each application has a row
that contains its icon and name, next to a tabbed view that shows information about the