summaryrefslogtreecommitdiff
path: root/platform/android/src/native_map_view.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/native_map_view.cpp')
-rwxr-xr-xplatform/android/src/native_map_view.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/src/native_map_view.cpp b/platform/android/src/native_map_view.cpp
index 7b87693cf5..6f947df050 100755
--- a/platform/android/src/native_map_view.cpp
+++ b/platform/android/src/native_map_view.cpp
@@ -965,7 +965,7 @@ jni::Local<jni::Array<jni::Object<Source>>> NativeMapView::getSources(JNIEnv& en
auto jSources = jni::Array<jni::Object<Source>>::New(env, sources.size());
int index = 0;
for (auto source : sources) {
- jSources.Set(env, index, Source::peerForCoreSource(env, *source, *rendererFrontend));
+ jSources.Set(env, index, Source::peerForCoreSource(env, source, *rendererFrontend));
index++;
}
@@ -981,7 +981,7 @@ jni::Local<jni::Object<Source>> NativeMapView::getSource(JNIEnv& env, const jni:
}
// Create and return the source's native peer
- return jni::NewLocal(env, Source::peerForCoreSource(env, *coreSource, *rendererFrontend));
+ return jni::NewLocal(env, Source::peerForCoreSource(env, coreSource, *rendererFrontend));
}
void NativeMapView::addSource(JNIEnv& env, const jni::Object<Source>& obj, jlong sourcePtr) {