summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2015-02-16 12:20:07 -0800
committerLeith Bade <leith@mapbox.com>2015-02-19 14:28:49 -0800
commit4daa02987b77c32265ad0aa8819419d4e21e66c0 (patch)
treea55ce3490e32130ffb8353d88a0bb53b2500ec11 /include
parentd5b8d57a7f6ce86b93c9d0ba527d285fb59821ad (diff)
downloadqtlocation-mapboxgl-4daa02987b77c32265ad0aa8819419d4e21e66c0.tar.gz
Tidy up JNI LatLng refs
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/android/jni.hpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/mbgl/android/jni.hpp b/include/mbgl/android/jni.hpp
index 698c024731..aa2f1ab2fc 100644
--- a/include/mbgl/android/jni.hpp
+++ b/include/mbgl/android/jni.hpp
@@ -19,16 +19,16 @@ extern std::string androidRelease;
extern jmethodID onMapChangedId;
extern jmethodID onFpsChangedId;
-extern jclass lonLatClass;
-extern jmethodID lonLatConstructorId;
-extern jfieldID lonLatLonId;
-extern jfieldID lonLatLatId;
-
-extern jclass lonLatZoomClass;
-extern jmethodID lonLatZoomConstructorId;
-extern jfieldID lonLatZoomLonId;
-extern jfieldID lonLatZoomLatId;
-extern jfieldID lonLatZoomZoomId;
+extern jclass latLngClass;
+extern jmethodID latLngConstructorId;
+extern jfieldID latLngLatitudeId;
+extern jfieldID latLngLongitudeId;
+
+extern jclass latLngZoomClass;
+extern jmethodID latLngZoomConstructorId;
+extern jfieldID latLngZoomLatitudeId;
+extern jfieldID latLngZoomLongitudeId;
+extern jfieldID latLngZoomZoomId;
extern jclass runtimeExceptionClass;
extern jclass nullPointerExceptionClass;