forked from organicmaps/organicmaps
[map] Fix unused variable warning
Fixes the following warning: ```` map/framework.cpp:2252:12: warning: variable ‘rect’ set but not used [-Wunused-but-set-variable] ```` Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
This commit is contained in:
parent
aa3e07c33f
commit
58df08f390
1 changed files with 1 additions and 1 deletions
|
@ -2250,7 +2250,7 @@ place_page::Info Framework::BuildPlacePageInfo(place_page::BuildInfo const & bui
|
|||
{
|
||||
auto const & track = *GetBookmarkManager().GetTrack(buildInfo.m_trackId);
|
||||
auto rect = track.GetLimitRect();
|
||||
track.UpdateSelectionInfo(track.GetLimitRect(), trackSelectionInfo);
|
||||
track.UpdateSelectionInfo(rect, trackSelectionInfo);
|
||||
}
|
||||
else
|
||||
trackSelectionInfo = FindTrackInTapPosition(buildInfo);
|
||||
|
|
Loading…
Add table
Reference in a new issue