summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/image-gallery/doc/src/image-gallery.qdoc2
-rw-r--r--examples/quick/users/doc/src/users.qdoc4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/quick/image-gallery/doc/src/image-gallery.qdoc b/examples/quick/image-gallery/doc/src/image-gallery.qdoc
index c86d199..56816b0 100644
--- a/examples/quick/image-gallery/doc/src/image-gallery.qdoc
+++ b/examples/quick/image-gallery/doc/src/image-gallery.qdoc
@@ -64,7 +64,7 @@
\section1 The example code
- The first step is to set up the \l Enginio client.
+ The first step is to set up the \l Enginio1::EnginioClient client.
\snippet image-gallery/image-gallery.qml client
The model gets initialized with the client declared above.
diff --git a/examples/quick/users/doc/src/users.qdoc b/examples/quick/users/doc/src/users.qdoc
index ce97e3b..f5436c5 100644
--- a/examples/quick/users/doc/src/users.qdoc
+++ b/examples/quick/users/doc/src/users.qdoc
@@ -63,7 +63,7 @@
This example uses QtEnginio library together with QtQuickControls, therefore both have
to be imported.
\snippet users/Browse.qml imports
- We will also use a common \l{Enginio}{Enginio} connection as shown here:
+ We will also use a common \l {Enginio1::EnginioClient}{EnginioClient} connection as shown here:
\snippet users/users.qml client
The example is organized into separate tabs by using \l TabView. Each tab shows different
@@ -72,7 +72,7 @@
\section1 Browsing users' data
The most convenient method to browse users is to use \l{Enginio1::EnginioModel}{EnginioModel}. The model can
automatically download all data that we need. It is sufficient to set three properties:
- \l{Enginio1::EnginioModel::enginio}{enginio}, \l{Enginio1::EnginioModel::query}{query}
+ \l{Enginio1::EnginioModel::client}{client}, \l{Enginio1::EnginioModel::query}{query}
and \l{Enginio1::EnginioModel::operation}{operation} as shown below:
\snippet users/Browse.qml browse