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:
authorvng <viktor.govako@gmail.com>2013-01-28 03:18:48 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:49:23 +0300
commit6f1dcdd9ede0f0158bc41c964b7bdf5786555700 (patch)
tree71683ed90d83a4f06c860ec385e9f368d9b820fa /indexer
parent4b105bb8a61516512f840882b7049d1a97e70b8b (diff)
Move file_name_utils into coding.
Diffstat (limited to 'indexer')
-rw-r--r--indexer/index.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/index.cpp b/indexer/index.cpp
index 979b07c7bf..788b08b47d 100644
--- a/indexer/index.cpp
+++ b/indexer/index.cpp
@@ -2,8 +2,8 @@
#include "data_header.hpp"
#include "../platform/platform.hpp"
-#include "../platform/file_name_utils.hpp"
+#include "../coding/file_name_utils.hpp"
#include "../coding/internal/file_data.hpp"
@@ -20,8 +20,8 @@ MwmValue::MwmValue(string const & name)
string MwmValue::GetFileName() const
{
string s = m_cont.GetFileName();
- pl::GetNameFromPath(s);
- pl::GetNameWithoutExt(s);
+ my::GetNameFromFullPath(s);
+ my::GetNameWithoutExt(s);
return s;
}