Commit 038eee79254bed48e9af49d9342faeca4eaa935f

Added orientationChangedRaw signal to QOrientationInfo
  
3333
3434Q_SIGNALS:
3535 void orientationChanged(qreal pitch, qreal roll, qreal yaw, qreal mag);
36 void orientationChangedRaw(qreal x, qreal y, qreal z);
3637
3738
3839private:
  
6060 qreal mag = qSqrt(qPow(static_cast<qreal>(x), 2) + qPow(static_cast<qreal>(y), 2) + qPow(static_cast<qreal>(z), 2));
6161
6262 emit pub->orientationChanged(pitch, roll, yaw, mag);
63 emit pub->orientationChangedRaw(static_cast<qreal>(x), static_cast<qreal>(y), static_cast<qreal>(z));
6364}
6465
6566void QOrientationInfoPrivate::startListening()