summaryrefslogtreecommitdiffstats
path: root/tests/auto/sensors2qmlapi/qdeclaccelerometer.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-11-24 08:46:23 +0100
committerQt by Nokia <qt-info@nokia.com>2011-11-25 08:24:29 +0100
commitacbe469322d0ab4aac863192ca5bf6fe1feedaed (patch)
tree99fecca57b0781744aa2ec93b03240a9b7b91b84 /tests/auto/sensors2qmlapi/qdeclaccelerometer.h
parentf3a86a85b9a4f6d0f22364dcb66e2a8b9f21a9be (diff)
QtSensors: Fix compilation of examples/warnings on Windows.
- Fix double->float truncation in tests - Use -rdynamic for g++ only - Introduce EXPORT macro in grue library for Windows to work - Add DESTDIR for the grue lib (to prevent it from ending up in the debug/release subfolders, respectively Change-Id: I3b902b501483c92639c0a6252240db4ed8a4a00d Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
Diffstat (limited to 'tests/auto/sensors2qmlapi/qdeclaccelerometer.h')
-rw-r--r--tests/auto/sensors2qmlapi/qdeclaccelerometer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/sensors2qmlapi/qdeclaccelerometer.h b/tests/auto/sensors2qmlapi/qdeclaccelerometer.h
index 5d8da9fb..01b8ea68 100644
--- a/tests/auto/sensors2qmlapi/qdeclaccelerometer.h
+++ b/tests/auto/sensors2qmlapi/qdeclaccelerometer.h
@@ -65,13 +65,13 @@ public:
}
bool isActive() { return _active; }
- void test(float x, float y, float z)
+ void test(qreal x, qreal y, qreal z)
{
if (sensor()->filters().count() > 0){
QAccelerometerFilter* af = (QAccelerometerFilter*)sensor()->filters().at(0);
- reader.setX((qreal)x);
- reader.setY((qreal)y);
- reader.setZ((qreal)z);
+ reader.setX(x);
+ reader.setY(y);
+ reader.setZ(z);
af->filter(&reader);
}
}