[editor] disable editing for sonsored-holiday

This commit is contained in:
Arsentiy Milchakov 2017-12-07 15:59:44 +03:00 committed by Ilya Grechuhin
parent 4bde1a859c
commit cd2ca18d6a
2 changed files with 7 additions and 1 deletions

View file

@ -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 &&

View file

@ -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; }