diff options
author | xylosper <darklin20@gmail.com> | 2019-02-12 11:23:07 +0900 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-02-12 11:08:26 +0200 |
commit | fbbc83aa0e369cd8adfeec1a4dc1591d5dba2a08 (patch) | |
tree | 8bc5f9738364811a4d4e1e25ff87eee9c10362e7 | |
parent | 26af7265c3e995fb5d09fc5f7e13dd73ae4660b3 (diff) | |
download | qtlocation-mapboxgl-fbbc83aa0e369cd8adfeec1a4dc1591d5dba2a08.tar.gz |
[qt] fix missing Q_MAPBOXGL_EXPORTs
New projection-related functions in QMapbox namespace
are missing Q_MAPBOXGL_EXPORTs.
-rw-r--r-- | platform/qt/include/qmapbox.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/qt/include/qmapbox.hpp b/platform/qt/include/qmapbox.hpp index 475c591de0..3acc9d55e0 100644 --- a/platform/qt/include/qmapbox.hpp +++ b/platform/qt/include/qmapbox.hpp @@ -127,9 +127,9 @@ public: virtual void deinitialize() = 0; }; -double metersPerPixelAtLatitude(double latitude, double zoom); -ProjectedMeters projectedMetersForCoordinate(const Coordinate &); -Coordinate coordinateForProjectedMeters(const ProjectedMeters &); +Q_MAPBOXGL_EXPORT double metersPerPixelAtLatitude(double latitude, double zoom); +Q_MAPBOXGL_EXPORT ProjectedMeters projectedMetersForCoordinate(const Coordinate &); +Q_MAPBOXGL_EXPORT Coordinate coordinateForProjectedMeters(const ProjectedMeters &); } // namespace QMapbox |