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:
authorExMix <rahuba.youri@mapswithme.com>2014-10-24 15:15:02 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:31:31 +0300
commitbf964bf405abed523b6838f6d5583ce8d155b51b (patch)
tree3d4c3194d120705feffe7dfaaafc1204e95b174c /map/active_maps_layout.cpp
parent901928079d96bab401bb46dbf7f160950f0f7018 (diff)
[core, android] reduce jni interface
Diffstat (limited to 'map/active_maps_layout.cpp')
-rw-r--r--map/active_maps_layout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/active_maps_layout.cpp b/map/active_maps_layout.cpp
index 718af519bf..e4186a140e 100644
--- a/map/active_maps_layout.cpp
+++ b/map/active_maps_layout.cpp
@@ -246,7 +246,7 @@ LocalAndRemoteSizeT const ActiveMapsLayout::GetRemoteCountrySizes(TIndex const &
{
CountryFile const & c = GetStorage().CountryByIndex(index).GetFile();
size_t const mapSize = c.GetRemoteSize(TMapOptions::EMapOnly);
- return { mapSize, mapSize + c.GetRemoteSize(TMapOptions::ECarRouting) };
+ return { mapSize, c.GetRemoteSize(TMapOptions::ECarRouting) };
}
int ActiveMapsLayout::AddListener(ActiveMapsListener * listener)