forked from organicmaps/organicmaps
[android] Added method to clear edits.
This commit is contained in:
parent
0d52d5a922
commit
ae05d79336
2 changed files with 8 additions and 0 deletions
|
@ -118,4 +118,10 @@ Java_com_mapswithme_maps_editor_Editor_nativeGetStats(JNIEnv * env, jclass clazz
|
|||
env->SetLongArrayRegion(result, 0, 3, buf);
|
||||
return result;
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_editor_Editor_nativeClearLocalEdits(JNIEnv * env, jclass clazz)
|
||||
{
|
||||
Editor::Instance().ClearAllLocalEdits();
|
||||
}
|
||||
} // extern "C"
|
||||
|
|
|
@ -77,4 +77,6 @@ public final class Editor
|
|||
* @return array [total edits count, uploaded edits count, last upload timestamp]
|
||||
*/
|
||||
public static native long[] nativeGetStats();
|
||||
|
||||
public static native void nativeClearLocalEdits();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue