summaryrefslogtreecommitdiffstats
path: root/src/sensors/qrotationsensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sensors/qrotationsensor.h')
-rw-r--r--src/sensors/qrotationsensor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sensors/qrotationsensor.h b/src/sensors/qrotationsensor.h
index 68a0d1d3..e7d0e2e9 100644
--- a/src/sensors/qrotationsensor.h
+++ b/src/sensors/qrotationsensor.h
@@ -68,7 +68,7 @@ class Q_SENSORS_EXPORT QRotationFilter : public QSensorFilter
public:
virtual bool filter(QRotationReading *reading) = 0;
private:
- bool filter(QSensorReading *reading) { return filter(static_cast<QRotationReading*>(reading)); }
+ bool filter(QSensorReading *reading);
};
class QRotationSensorPrivate;
@@ -80,7 +80,7 @@ class Q_SENSORS_EXPORT QRotationSensor : public QSensor
public:
explicit QRotationSensor(QObject *parent = 0);
virtual ~QRotationSensor();
- QRotationReading *reading() const { return static_cast<QRotationReading*>(QSensor::reading()); }
+ QRotationReading *reading() const;
static char const * const type;
bool hasZ() const;