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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-12-07 11:19:31 +0300
committermgsergio <mgsergio@yandex.ru>2017-12-07 15:05:05 +0300
commit5f19f86e3100644775cf4d86c9f2e0fe2b1fbb70 (patch)
treee78cd902643eefabce1c84648515738f425dbdd6 /indexer/edits_migration.cpp
parentcd0aeff6a07dbc2a1700d93d80c8cbd3f8bb704f (diff)
[editor] load map edits refactoring
Diffstat (limited to 'indexer/edits_migration.cpp')
-rw-r--r--indexer/edits_migration.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/edits_migration.cpp b/indexer/edits_migration.cpp
index bf56ec971f..298bee88f4 100644
--- a/indexer/edits_migration.cpp
+++ b/indexer/edits_migration.cpp
@@ -12,7 +12,7 @@
namespace editor
{
-FeatureID MigrateNodeFeatureIndex(osm::Editor::TForEachFeaturesNearByFn & forEach,
+FeatureID MigrateNodeFeatureIndex(osm::Editor::ForEachFeaturesNearByFn & forEach,
XMLFeature const & xml,
osm::Editor::FeatureStatus const featureStatus,
TGenerateIDFn const & generateID)
@@ -44,7 +44,7 @@ FeatureID MigrateNodeFeatureIndex(osm::Editor::TForEachFeaturesNearByFn & forEac
}
FeatureID MigrateWayFeatureIndex(
- osm::Editor::TForEachFeaturesNearByFn & forEach, XMLFeature const & xml,
+ osm::Editor::ForEachFeaturesNearByFn & forEach, XMLFeature const & xml,
osm::Editor::FeatureStatus const /* Unused for now (we don't create/delete area features)*/,
TGenerateIDFn const & /*Unused for the same reason*/)
{
@@ -108,7 +108,7 @@ FeatureID MigrateWayFeatureIndex(
return feature->GetID();
}
-FeatureID MigrateFeatureIndex(osm::Editor::TForEachFeaturesNearByFn & forEach,
+FeatureID MigrateFeatureIndex(osm::Editor::ForEachFeaturesNearByFn & forEach,
XMLFeature const & xml,
osm::Editor::FeatureStatus const featureStatus,
TGenerateIDFn const & generateID)