summaryrefslogtreecommitdiffstats
path: root/src/sensors/qtapsensor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sensors/qtapsensor.cpp')
-rw-r--r--src/sensors/qtapsensor.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/sensors/qtapsensor.cpp b/src/sensors/qtapsensor.cpp
index a0df3cd3..c9cb0eb3 100644
--- a/src/sensors/qtapsensor.cpp
+++ b/src/sensors/qtapsensor.cpp
@@ -84,11 +84,17 @@ IMPLEMENT_READING(QTapReading)
the detected axis. Previous versions of the API did not allow this. Applications that check
for the _Pos and _Neg flags as values should be updated so they can work with all devices.
- \oldcode
+ For example, if you have code like
+
+ \code
if (reading->tapDirection() == QTapReading::X_Pos) {
...
}
- \newcode
+ \endcode
+
+ you can rewrite it as
+
+ \code
if (reading->tapDirection()&QTapReading::X_Pos) {
...
}