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-03-19 13:11:53 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2019-03-19 15:06:58 +0300
commitdb525bf9088dc134f78d5f5ee930765a31b8a4c8 (patch)
tree0a6f7995e70773df57d0fc28cd9ddd539b2dc908 /local_ads
parent939620a534af3d58288c4734fa99f3a85f4b587e (diff)
[coding] Removed JoinFoldersToPath.
Diffstat (limited to 'local_ads')
-rw-r--r--local_ads/statistics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/local_ads/statistics.cpp b/local_ads/statistics.cpp
index 5b19de28ac..2ebab84772 100644
--- a/local_ads/statistics.cpp
+++ b/local_ads/statistics.cpp
@@ -135,7 +135,7 @@ std::string GetClientIdHash()
std::string GetPath(std::string const & fileName)
{
- return base::JoinFoldersToPath({GetPlatform().SettingsDir(), kStatisticsFolderName}, fileName);
+ return base::JoinPath(GetPlatform().SettingsDir(), kStatisticsFolderName, fileName);
}
std::string GetPath(local_ads::Event const & event)