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:
authorMaxim Pimenov <m@maps.me>2019-02-12 19:13:51 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2019-02-13 14:58:09 +0300
commitb1bec1c75c8f6eaa0b16911833a92b2b9ce82ae3 (patch)
treeb2e09955d50d2e97ffd215e086dd081586735dae /map/taxi_delegate.cpp
parentb4351494fbcafee4c421692bafc7c5d310bdab3d (diff)
[storage] Removed the T prefix from type aliases and type names.
Diffstat (limited to 'map/taxi_delegate.cpp')
-rw-r--r--map/taxi_delegate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/map/taxi_delegate.cpp b/map/taxi_delegate.cpp
index 97360883ae..3993e0b026 100644
--- a/map/taxi_delegate.cpp
+++ b/map/taxi_delegate.cpp
@@ -13,10 +13,10 @@ TaxiDelegate::TaxiDelegate(storage::Storage const & st, storage::CountryInfoGett
{
}
-storage::TCountriesVec TaxiDelegate::GetCountryIds(m2::PointD const & point)
+storage::CountriesVec TaxiDelegate::GetCountryIds(m2::PointD const & point)
{
auto const countryId = m_infoGetter.GetRegionCountryId(point);
- storage::TCountriesVec topmostCountryIds;
+ storage::CountriesVec topmostCountryIds;
m_storage.GetTopmostNodesFor(countryId, topmostCountryIds);
return topmostCountryIds;
}
@@ -26,7 +26,7 @@ std::string TaxiDelegate::GetCityName(m2::PointD const & point)
return m_cityFinder.GetCityName(point, StringUtf8Multilang::kEnglishCode);
}
-storage::TCountryId TaxiDelegate::GetMwmId(m2::PointD const & point)
+storage::CountryId TaxiDelegate::GetMwmId(m2::PointD const & point)
{
return m_infoGetter.GetRegionCountryId(point);
}