Remove duplicate signals

This commit is contained in:
vladest 2018-12-18 20:30:53 +01:00
parent 63aa27475e
commit a99ba052b8

View file

@ -15,7 +15,7 @@
// These properties have JSDoc documentation in HMDScriptingInterface.h.
class AbstractHMDScriptingInterface : public QObject {
Q_OBJECT
Q_PROPERTY(bool active READ isHMDMode NOTIFY activeChanged)
Q_PROPERTY(bool active READ isHMDMode NOTIFY mountedChanged)
Q_PROPERTY(float ipd READ getIPD)
Q_PROPERTY(float eyeHeight READ getEyeHeight)
Q_PROPERTY(float playerHeight READ getPlayerHeight)
@ -67,8 +67,6 @@ signals:
*/
void mountedChanged();
void activeChanged();
private:
float _IPDScale{ 1.0 };
};