From 01a5a78da4c1d52843ffc7deaa2f43ee67c13da6 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 26 Sep 2012 14:09:17 +0300 Subject: [PATCH] Temporarily commented out address retrieving as it's not used --- map/address_finder.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/map/address_finder.cpp b/map/address_finder.cpp index 6bb952b4ee..157dc5a361 100644 --- a/map/address_finder.cpp +++ b/map/address_finder.cpp @@ -492,7 +492,8 @@ void Framework::GetAddressInfo(m2::PointD const & pt, AddressInfo & info) const getAddress.FillAddress(GetSearchEngine(), info); - GetLocality(pt, info); + // @TODO Temporarily commented - it's slow and not used in UI + //GetLocality(pt, info); } void Framework::GetAddressInfo(FeatureType const & ft, m2::PointD const & pt, AddressInfo & info) const @@ -513,7 +514,8 @@ void Framework::GetAddressInfo(FeatureType const & ft, m2::PointD const & pt, Ad getAddress(ft); getAddress.FillAddress(GetSearchEngine(), info); - GetLocality(pt, info); + // @TODO Temporarily commented - it's slow and not used in UI + //GetLocality(pt, info); } void Framework::GetLocality(m2::PointD const & pt, AddressInfo & info) const