summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2011-10-21 17:19:39 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 09:22:58 +0200
commitfa2fb6be05115af6151fc6e40b809a98ee41e83a (patch)
treee8cb494af7d247a0da09e4ac9ed59b445e69602c /tests/auto
parent50d2c053bd8ef3b6244357ae18cf26b13e25a189 (diff)
Revert temporary Q_SENSORS_EXPORT_TEMP
Q_SENSORS_EXPORT_TEMP was used while the normal macro was removed from qglobal.h. Change-Id: I55bf788e9beab5b060b9e24ee2a815ce3d9bc2a4 Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qsensor/tst_qsensor.cpp2
-rw-r--r--tests/auto/sensors2qmlapi/tst_sensors2qmlapi.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qsensor/tst_qsensor.cpp b/tests/auto/qsensor/tst_qsensor.cpp
index 03543148..3218d7fc 100644
--- a/tests/auto/qsensor/tst_qsensor.cpp
+++ b/tests/auto/qsensor/tst_qsensor.cpp
@@ -56,7 +56,7 @@
// The unit test needs to change the behaviour of the library. It does this
// through an exported but undocumented function.
-Q_SENSORS_EXPORT_TEMP void sensors_unit_test_hook(int index);
+Q_SENSORS_EXPORT void sensors_unit_test_hook(int index);
bool operator==(const qoutputrange &orl1, const qoutputrange &orl2)
{
return (orl1.minimum == orl2.minimum &&
diff --git a/tests/auto/sensors2qmlapi/tst_sensors2qmlapi.cpp b/tests/auto/sensors2qmlapi/tst_sensors2qmlapi.cpp
index f7070ed0..34385231 100644
--- a/tests/auto/sensors2qmlapi/tst_sensors2qmlapi.cpp
+++ b/tests/auto/sensors2qmlapi/tst_sensors2qmlapi.cpp
@@ -53,7 +53,7 @@ QDeclAccelerometer* TestSensorPlugin::stAccel = 0;
QDeclAmbientLightSensor* TestSensorPlugin::stAbl = 0;
QDeclProximitySensor* TestSensorPlugin::stProxi = 0;
-Q_SENSORS_EXPORT_TEMP void sensors_unit_test_hook(int index);
+Q_SENSORS_EXPORT void sensors_unit_test_hook(int index);
class tst_Sensors2QMLAPI : public QObject
{