Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Marchuk <alexm@maps.me>2016-02-19 16:23:50 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:49:11 +0300
commit5a10b61a65d1681668ab136c1edf52885c0c390f (patch)
tree47221b0a5c0ab37d01274b7a773b69c6ac74f4c0 /android/jni/com/mapswithme/maps/Framework.cpp
parent7ec340c196c102d0618ed75e7bff0a23c0a63381 (diff)
[new downloader][android] add: Aliases for ScopedLocal*ArrayRef`s.
fix: Rebase error.
Diffstat (limited to 'android/jni/com/mapswithme/maps/Framework.cpp')
-rw-r--r--android/jni/com/mapswithme/maps/Framework.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp
index 916ed90344..a942e86367 100644
--- a/android/jni/com/mapswithme/maps/Framework.cpp
+++ b/android/jni/com/mapswithme/maps/Framework.cpp
@@ -470,7 +470,7 @@ extern "C"
jmethodID const method = jni::GetMethodID(env, *listener, "onRoutingEvent", "(I[Ljava/lang/String;)V");
ASSERT(method, ());
- jni::ScopedLocalRef<jobjectArray> const countries(env, env->NewObjectArray(absentMaps.size(), jni::GetStringClass(env), 0));
+ jni::TScopedLocalObjectArrayRef const countries(env, env->NewObjectArray(absentMaps.size(), jni::GetStringClass(env), 0));
for (size_t i = 0; i < absentMaps.size(); i++)
{
jni::TScopedLocalRef id(env, jni::ToJavaString(env, absentMaps[i]));