summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2013-11-26 23:04:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-28 09:52:19 +0100
commit2a9204258e01b5164a899ecc42ad6dcd67d6d423 (patch)
treed10703bf2deb1510b03e7aaa27e182224020e61d /examples
parent88d5fa0d298872142c7fc29cb51fc4704c7ad407 (diff)
downloadqtenginio-2a9204258e01b5164a899ecc42ad6dcd67d6d423.tar.gz
Fix up documentation, do not mention *Base classes
Change-Id: I955e7a18631b158825a750c44ec310ff13b834f2 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
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