summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/grue.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/examples/grue.qdoc')
-rw-r--r--doc/src/examples/grue.qdoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/examples/grue.qdoc b/doc/src/examples/grue.qdoc
index 37a602fe..6478f3bb 100644
--- a/doc/src/examples/grue.qdoc
+++ b/doc/src/examples/grue.qdoc
@@ -57,7 +57,7 @@
*/
/*!
- \example QtSensors/QtSensors_grue/lib
+ \example sensors/grue/lib
\title Grue Sensor Definition
\brief The Grue sensor is defined in a library so that applications can use it.
@@ -78,7 +78,7 @@
*/
/*!
- \example QtSensors/QtSensors_grue/plugin
+ \example sensors/grue/plugin
\title Grue Sensor Implementation
\brief The Grue sensor implementation lives in a plugin that is loaded by the Qt Sensors library.
@@ -94,13 +94,13 @@
light sensor. In the start method, the backend should be sure to call the
sensorStopped() or sensorBusy() methods if it cannot start.
- \snippet ../examples/QtSensors/QtSensors_grue/plugin/gruesensorimpl.cpp start
+ \snippet ../examples/sensors/grue/plugin/gruesensorimpl.cpp start
The setReading method is needed so that the sensors library knows where the
readings are coming from. This backend has a local copy of the reading so
it passes a pointer to the function.
- \snippet ../examples/QtSensors/QtSensors_grue/plugin/gruesensorimpl.cpp setReading
+ \snippet ../examples/sensors/grue/plugin/gruesensorimpl.cpp setReading
However it is also possible to pass null to the setReading method in which
case the sensors library will create an instance and return a pointer.
@@ -123,7 +123,7 @@
*/
/*!
- \example QtSensors/QtSensors_grue/console_app
+ \example sensors/grue/console_app
\title Grue Sensor Console Application
\brief The Grue sensor console application demonstrates use of the Grue sensor.
@@ -135,7 +135,7 @@
*/
/*!
- \example QtSensors/QtSensors_grue/import
+ \example sensors/grue/import
\title Grue Sensor QML Import
\brief The Grue sensor QML import exports the GrueSensor class as a QML type.
@@ -145,7 +145,7 @@
*/
/*!
- \example QtSensors/QtSensors_grue
+ \example sensors/grue
\title Grue Sensor QML Application
\brief The Grue sensor QML application demonstrates use of the GrueSensor QML type.
@@ -154,7 +154,7 @@
this example or it will not be able to find its dependencies.
\code
- qmlscene QtSensors_grue.qml
+ qmlscene grue.qml
\endcode
\sa {Qt Sensors - Grue Sensor Example}