forked from organicmaps/organicmaps
[core] Fixed build after rebase release-96 on master
This commit is contained in:
parent
e8cc7fda2f
commit
4c15e49177
1 changed files with 3 additions and 3 deletions
|
@ -2322,13 +2322,13 @@ void Framework::SetPlacePageListeners(PlacePageEvent::OnOpen const & onOpen,
|
|||
place_page::Info const & Framework::GetCurrentPlacePageInfo() const
|
||||
{
|
||||
CHECK(HasPlacePageInfo(), ());
|
||||
return m_currentPlacePageInfo.get();
|
||||
return m_currentPlacePageInfo.value();
|
||||
}
|
||||
|
||||
place_page::Info & Framework::GetCurrentPlacePageInfo()
|
||||
{
|
||||
CHECK(IsPlacePageOpened(), ());
|
||||
return *m_currentPlacePageInfo;
|
||||
CHECK(HasPlacePageInfo(), ());
|
||||
return m_currentPlacePageInfo.value();
|
||||
}
|
||||
|
||||
void Framework::ActivateMapSelection(std::optional<place_page::Info> const & info)
|
||||
|
|
Loading…
Add table
Reference in a new issue