forked from organicmaps/organicmaps
[editor] disable editing for sonsored-holiday
This commit is contained in:
parent
4bde1a859c
commit
cd2ca18d6a
2 changed files with 7 additions and 1 deletions
|
@ -181,6 +181,12 @@ void Info::SetBac(BookmarkAndCategory const & bac)
|
|||
m_uiSubtitle = FormatSubtitle(IsFeature() /* withType */);
|
||||
}
|
||||
|
||||
bool Info::IsNotEditableSponsored() const
|
||||
{
|
||||
return m_sponsoredType == SponsoredType::Booking ||
|
||||
m_sponsoredType == SponsoredType::Holiday;
|
||||
}
|
||||
|
||||
bool Info::ShouldShowEditPlace() const
|
||||
{
|
||||
return m_canEditOrAdd &&
|
||||
|
|
|
@ -130,7 +130,7 @@ public:
|
|||
|
||||
/// Sponsored
|
||||
bool IsSponsored() const { return m_sponsoredType != SponsoredType::None; }
|
||||
bool IsNotEditableSponsored() const { return m_sponsoredType == SponsoredType::Booking; }
|
||||
bool IsNotEditableSponsored() const;
|
||||
void SetBookingSearchUrl(std::string const & url) { m_bookingSearchUrl = url; }
|
||||
std::string const & GetBookingSearchUrl() const { return m_bookingSearchUrl; }
|
||||
void SetSponsoredUrl(std::string const & url) { m_sponsoredUrl = url; }
|
||||
|
|
Loading…
Add table
Reference in a new issue