summaryrefslogtreecommitdiffstats
path: root/src/imports/sensors/qmlsensorgesture.cpp
diff options
context:
space:
mode:
authorThomas McGuire <thomas.mcguire.qnx@kdab.com>2012-11-02 17:32:21 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-03 00:41:15 +0100
commit1b3b8a3619bb9fae6cf047f242398ecf0b189fc7 (patch)
treef2366d03f8ae188b71b2cbc9886364c9903b95fe /src/imports/sensors/qmlsensorgesture.cpp
parent40efdaa48c07758233225a0483f40158da6bddf6 (diff)
Remove the QtSensors:: prefix from documentation.
This appears to be implicit. Now the property documentation is built correctly. Change-Id: I3998582fdeabf751a612c379df69f5eb41b9419d Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
Diffstat (limited to 'src/imports/sensors/qmlsensorgesture.cpp')
-rw-r--r--src/imports/sensors/qmlsensorgesture.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/imports/sensors/qmlsensorgesture.cpp b/src/imports/sensors/qmlsensorgesture.cpp
index 2fae55e3..92af3f32 100644
--- a/src/imports/sensors/qmlsensorgesture.cpp
+++ b/src/imports/sensors/qmlsensorgesture.cpp
@@ -117,7 +117,7 @@ void QmlSensorGesture::componentComplete()
*/
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::availableGestures
+ \qmlproperty stringlist SensorGesture::availableGestures
This property can be used to determine all available gestures on the system.
*/
QStringList QmlSensorGesture::availableGestures()
@@ -126,13 +126,13 @@ QStringList QmlSensorGesture::availableGestures()
}
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::gestures
+ \qmlproperty stringlist SensorGesture::gestures
Set this property to a list of the gestures that the application is interested in detecting.
This property cannot be changed while the type is enabled.
The properties validGestures and invalidGestures will be set as appropriate immediately.
To determine all available getures on the system please use the
- \l {QtSensors::SensorGesture::availableGestures} {availableGestures} property.
+ \l {SensorGesture::availableGestures} {availableGestures} property.
\sa {QtSensorGestures Plugins}
*/
@@ -157,7 +157,7 @@ void QmlSensorGesture::setGestures(const QStringList& value)
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::validGestures
+ \qmlproperty stringlist SensorGesture::validGestures
This property holds the requested gestures that were found on the system.
*/
QStringList QmlSensorGesture::validGestures() const
@@ -168,7 +168,7 @@ QStringList QmlSensorGesture::validGestures() const
}
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::invalidGestures
+ \qmlproperty stringlist SensorGesture::invalidGestures
This property holds the requested gestures that were not found on the system.
*/
QStringList QmlSensorGesture::invalidGestures() const
@@ -179,10 +179,10 @@ QStringList QmlSensorGesture::invalidGestures() const
}
/*!
- \qmlproperty bool QtSensors::SensorGesture::enabled
+ \qmlproperty bool SensorGesture::enabled
This property can be used to activate or deactivate the sensor gesture.
Default value is false;
- \sa {QtSensors::SensorGesture::detected}, {detected}
+ \sa {SensorGesture::detected}, {detected}
*/
bool QmlSensorGesture::enabled() const
{
@@ -211,7 +211,7 @@ void QmlSensorGesture::setEnabled(bool value)
}
/*!
- \qmlsignal QtSensors::SensorGesture::detected(string gesture)
+ \qmlsignal SensorGesture::detected(string gesture)
This signal is emitted whenever a gesture is detected.
The gesture parameter contains the gesture that was detected.
*/