summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/grue.qdoc
diff options
context:
space:
mode:
authorLincoln Ramsay <lincoln.ramsay@nokia.com>2012-06-19 15:47:09 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-20 01:56:15 +0200
commitb2e97817684f40ab9353fa279a4c02ef9c12e13d (patch)
treeb7c7114b555539de9e1bc5a1bd1ed5afeed777bb /doc/src/examples/grue.qdoc
parent5e89b386f4aae5a4953c725b6aab565b21a3330f (diff)
Remove the 'special' naming of examples.
Just go back to the naming convention we had before. Change-Id: Iefecb7a5e0ab3aa4d22267b4f475a8e9c1c96058 Reviewed-by: Lorn Potter <lorn.potter@nokia.com>
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}