review fixes

This commit is contained in:
ExMix 2014-10-24 20:19:46 +03:00 committed by Alex Zolotarev
parent 3900cc9a51
commit 6454974be3
3 changed files with 1 additions and 3 deletions

View file

@ -467,7 +467,7 @@ namespace android
void Framework::ShowAllSearchResults()
{
m_doLoadState = false;
Platform::RunOnGuiThreadImpl(bind(&ShowAllSearchResultsImpl), false);
Platform::RunOnGuiThreadImpl(bind(&ShowAllSearchResultsImpl));
}
/*

View file

@ -1255,7 +1255,6 @@ size_t Framework::ShowAllSearchResults()
shared_ptr<State> state = GetLocationState();
if (state->GetMode() < location::State::Follow)
{
LOG(LINFO, ("UVR : Change viewport from search"));
// Setup viewport according to results.
m2::AnyRectD viewport = m_navigator.Screen().GlobalRect();
m2::PointD const center = viewport.Center();

View file

@ -720,7 +720,6 @@ void State::StopLocationFollow()
void State::SetFixedZoom()
{
LOG(LINFO, ("UVR : SetFixedZoom"));
SetModeInfo(IncludeModeBit(m_modeInfo, FixedZoomBit));
}