forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
4f46fcd585
commit
0c899adb77
1 changed files with 2 additions and 2 deletions
|
@ -441,7 +441,7 @@ void RoutingManager::RemoveRoute(bool deactivateFollowing)
|
|||
df::DrapeEngineLockGuard lock(m_drapeEngine);
|
||||
if (lock)
|
||||
{
|
||||
lock_guard<mutex> l(m_drapeSubroutesMutex);
|
||||
lock_guard<mutex> lockSubroutes(m_drapeSubroutesMutex);
|
||||
for (auto const & subrouteId : m_drapeSubroutes)
|
||||
lock.Get()->RemoveSubroute(subrouteId, false /* deactivateFollowing */);
|
||||
}
|
||||
|
@ -1345,7 +1345,7 @@ void RoutingManager::SetSubroutesVisibility(bool visible)
|
|||
if (!lock)
|
||||
return;
|
||||
|
||||
lock_guard<mutex> l(m_drapeSubroutesMutex);
|
||||
lock_guard<mutex> lockSubroutes(m_drapeSubroutesMutex);
|
||||
for (auto const & subrouteId : m_drapeSubroutes)
|
||||
lock.Get()->SetSubrouteVisibility(subrouteId, visible);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue