aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2018-12-04 13:03:05 +0100
committerTopi Reiniƶ <topi.reinio@qt.io>2018-12-04 12:36:58 +0000
commit80d6c28c692c466fbc819ec3b327f3cd24492834 (patch)
tree433be1e5a8ad510f7f3f49d57e594e317be623a5
parent0c7bf141b08aa9e757e91a4a05769257d043eab2 (diff)
Doc: Replace obsolete qdoc command \chapter
Change-Id: Iecf6078580fdb1dec29c57da355eb3df923e7b0d Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--doc/concepts.qdoc6
-rw-r--r--doc/index.qdoc4
-rw-r--r--doc/installation.qdoc10
-rw-r--r--doc/usage.qdoc10
4 files changed, 15 insertions, 15 deletions
diff --git a/doc/concepts.qdoc b/doc/concepts.qdoc
index 73e1634..6117265 100644
--- a/doc/concepts.qdoc
+++ b/doc/concepts.qdoc
@@ -34,7 +34,7 @@
\page qmllive-concepts.html
\title Concepts
-\chapter Live Reloading
+\section1 Live Reloading
During a typical user interface design phase, designers create many graphical
documents describing the desired user interface. Transferring such graphical
@@ -94,7 +94,7 @@ you can also connect more devices, or devices with different sizes.
\image runtime.png
-\chapter Display, Screens, Panels, Components, Fragments
+\section1 Display, Screens, Panels, Components, Fragments
\code
+- Display
@@ -131,7 +131,7 @@ and its screen navigation structure, and of the structure of individual screens
their panels. It is also required to define a common set of components to be used inside
the panels. The fragments are implementation-specific.
-\chapter UX Sheets - \e{visual component testing}
+\section1 UX Sheets - \e{visual component testing}
UXSheet gives guidance on how to successfully develop user interface components with
diff --git a/doc/index.qdoc b/doc/index.qdoc
index c560534..b634978 100644
--- a/doc/index.qdoc
+++ b/doc/index.qdoc
@@ -36,7 +36,7 @@
\indexpage
\title Qt QmlLive
-\chapter Overview
+\section1 Overview
Qt QmlLive is a local and remote Qt Quick live reloading system. It allows you to
change your QML user interface source code and view the result in almost
@@ -58,7 +58,7 @@ your work so much more delightful.
\endquotation
-\chapter Contents
+\section1 Contents
The content of the documentation:
diff --git a/doc/installation.qdoc b/doc/installation.qdoc
index bf552b4..c25a8cb 100644
--- a/doc/installation.qdoc
+++ b/doc/installation.qdoc
@@ -34,7 +34,7 @@
\page qmllive-installation.html
\title Installation
-\chapter Dependencies
+\section1 Dependencies
\list
\li Windows, Linux or macOS
@@ -42,7 +42,7 @@
\endlist
-\chapter Building for desktop
+\section1 Building for desktop
\code
$ qmake
@@ -57,7 +57,7 @@ QmlLive Bench can be started directly from build directory by executing
\endcode
-\chapter Building for device
+\section1 Building for device
\e{Note: Only needed when you want to have live reloading enabled on the
target.}
@@ -78,7 +78,7 @@ Optionally it can be packaged with the help of
\endcode
-\chapter Building documentation
+\section1 Building documentation
\code
$ qmake CONFIG+=force_independent
@@ -88,7 +88,7 @@ Optionally it can be packaged with the help of
The documentation will be available at \tt{doc/qmllive/index.html}.
-\chapter Build options reference
+\section1 Build options reference
The following values can be added to qmake \c CONFIG variable:
diff --git a/doc/usage.qdoc b/doc/usage.qdoc
index 3a669a6..35282fd 100644
--- a/doc/usage.qdoc
+++ b/doc/usage.qdoc
@@ -34,7 +34,7 @@
\page qmllive-usage.html
\title Usage
-\chapter Introduction
+\section1 Introduction
The QmlLive system was designed from the ground up to support your needs. It is
structured in a modular fashion to be able to meet various usage
@@ -52,7 +52,7 @@ For C++ developers, we also offer the ability to integrate the QmlLive
system into your own custom runtime using our \l LiveNodeEngine class with a few
lines of code and then use the QmlLive Bench to control it.
-\chapter The Workbench
+\section1 The Workbench
The standard workbench is the all inclusive QML live reloading tool. It allows you to
select a workspace to watch over and provides a default QML runtime for the
@@ -79,7 +79,7 @@ options:
-stayontop .........................keep viewer window on top
\endcode
-\chapter Qt Creator Integration
+\section1 Qt Creator Integration
You can integrate the QmlLive Bench into Qt Creator as an external tool. For this
you need to open the Settings/Options dialog from Qt Creator and open the
@@ -102,7 +102,7 @@ current project root folder open as workspace.
-\chapter QmlLive Runtime
+\section1 QmlLive Runtime
A default runtime is provided by the QmlLive Runtime tool. It
provides a default qml viewer and listens on a given port for IPC calls from
@@ -149,7 +149,7 @@ this is used all workspace documents will be updated prior to instantiation of
any QML component.
-\chapter Custom Runtime
+\section1 Custom Runtime
You can create your own custom runtime with the QmlLive features. This allows you to use your QML view setup with your additional C++ code together with the QmlLive system.