summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/ios/iosgyroscope.h
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2013-03-22 09:39:55 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-22 12:21:35 +0100
commitec9fe87220829f2f6f3940f714a8057c5f79e799 (patch)
tree70358e9b7115764d0d6d19392cc33e3fc07005ac /src/plugins/sensors/ios/iosgyroscope.h
parentbfe01716dd62fb47f51fda33490a3a4f2528df76 (diff)
iOS: remove unneeded void pointer casting in private headers
The headers in use for the sensor backend are private, and should never be directly included in any .cpp files. As such, we don't need to be careful using obj-c features in the header files. Change-Id: If16a84c88a7e7afc45afe00e668e4582337e4907 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
Diffstat (limited to 'src/plugins/sensors/ios/iosgyroscope.h')
-rw-r--r--src/plugins/sensors/ios/iosgyroscope.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/sensors/ios/iosgyroscope.h b/src/plugins/sensors/ios/iosgyroscope.h
index 358a7c83..ed46241c 100644
--- a/src/plugins/sensors/ios/iosgyroscope.h
+++ b/src/plugins/sensors/ios/iosgyroscope.h
@@ -42,6 +42,8 @@
#ifndef IOSGYROSCOPE_H
#define IOSGYROSCOPE_H
+#include <Foundation/Foundation.h>
+
#include <qsensorbackend.h>
#include <qgyroscope.h>
@@ -59,7 +61,7 @@ public:
void stop();
private:
- void *m_updateQueue;
+ NSOperationQueue *m_updateQueue;
QGyroscopeReading m_reading;
};
QT_END_NAMESPACE