summaryrefslogtreecommitdiffstats
path: root/src/imports/sensors/qmlrotationsensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/sensors/qmlrotationsensor.h')
-rw-r--r--src/imports/sensors/qmlrotationsensor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/sensors/qmlrotationsensor.h b/src/imports/sensors/qmlrotationsensor.h
index db3b62f6..4d7b543a 100644
--- a/src/imports/sensors/qmlrotationsensor.h
+++ b/src/imports/sensors/qmlrotationsensor.h
@@ -44,7 +44,6 @@
#include "qmlsensor.h"
-QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
class QRotationSensor;
@@ -52,13 +51,15 @@ class QRotationSensor;
class QmlRotationSensor : public QmlSensor
{
Q_OBJECT
- Q_PROPERTY(bool hasZ READ hasZ)
+ Q_PROPERTY(bool hasZ READ hasZ NOTIFY hasZChanged)
public:
explicit QmlRotationSensor(QObject *parent = 0);
~QmlRotationSensor();
bool hasZ() const;
+Q_SIGNALS:
+ void hasZChanged(bool hasZ);
private:
QSensor *sensor() const Q_DECL_OVERRIDE;
@@ -96,5 +97,4 @@ private:
};
QT_END_NAMESPACE
-QT_END_HEADER
#endif