summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeoprojection_p.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-03-01 15:11:47 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-02 09:44:06 +0100
commit7413cd58f3bdb0e10f0bedf3a0f6a04a52c15ddc (patch)
tree43ebbec7c46f0df7e9d04376aa6e67ad94899efe /src/location/maps/qgeoprojection_p.h
parent9bb51a82238864310f2a42a63d04393e435d92a1 (diff)
downloadqtlocation-7413cd58f3bdb0e10f0bedf3a0f6a04a52c15ddc.tar.gz
Fix building on Windows.
Do not export static member functions. Change-Id: I3c83fa6a97046268e02758e8510b6d56e5deead9 Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'src/location/maps/qgeoprojection_p.h')
-rw-r--r--src/location/maps/qgeoprojection_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/location/maps/qgeoprojection_p.h b/src/location/maps/qgeoprojection_p.h
index 32983554..fbdfd825 100644
--- a/src/location/maps/qgeoprojection_p.h
+++ b/src/location/maps/qgeoprojection_p.h
@@ -63,8 +63,8 @@ class QDoubleVector2D;
class Q_LOCATION_EXPORT QGeoProjection
{
public:
- Q_AUTOTEST_EXPORT static QDoubleVector2D coordToMercator(const QGeoCoordinate &coord);
- Q_AUTOTEST_EXPORT static QGeoCoordinate mercatorToCoord(const QDoubleVector2D &mercator);
+ static QDoubleVector2D coordToMercator(const QGeoCoordinate &coord);
+ static QGeoCoordinate mercatorToCoord(const QDoubleVector2D &mercator);
private:
static double realmod(const double a, const double b);