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:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-07-31 16:43:54 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:58:43 +0300
commitf260a12fdad7b85260b1effde2baee5484add400 (patch)
treed530d56df84cb7137062227c4d50f3aa08085129 /map/framework.cpp
parentb15d1117ca4ab2b9310855692c93b4d1e5d93050 (diff)
PR fixes
Diffstat (limited to 'map/framework.cpp')
-rw-r--r--map/framework.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/map/framework.cpp b/map/framework.cpp
index 3dc84ca253..bf580c10a3 100644
--- a/map/framework.cpp
+++ b/map/framework.cpp
@@ -2124,7 +2124,6 @@ void Framework::BuildRoute(m2::PointD const & destination, uint32_t timeoutSec)
RemoveRoute();
}
CallRouteBuilded(code, absentCountries, absentRoutingIndexes);
- LOG(LINFO, ("Inside callback!"));
};
m_routingSession.BuildRoute(state->Position(), destination,
@@ -2189,7 +2188,7 @@ void Framework::SetRouterImpl(RouterType type)
});
};
#else
- routing::TPointCheckCallback const routingVisualizerFn = nullptr;
+ routing::RouterDelegate::TPointCheckCallback const routingVisualizerFn = nullptr;
#endif
m_routingSession.SetRouter(move(router), move(fetcher), routingStatisticsFn, routingVisualizerFn);
m_currentRouterType = type;