forked from organicmaps/organicmaps
Fix CanAddExcludeTime.
This commit is contained in:
parent
c7dcbc9d0c
commit
84fff463df
1 changed files with 3 additions and 1 deletions
|
@ -195,7 +195,9 @@ bool TimeTable::SetOpeningTime(osmoh::Timespan const & span)
|
|||
|
||||
bool TimeTable::CanAddExcludeTime() const
|
||||
{
|
||||
return !GetPredefinedExcludeTime().IsEmpty();
|
||||
auto copy = *this;
|
||||
return copy.AddExcludeTime(GetPredefinedExcludeTime()) &&
|
||||
copy.GetExcludeTime().size() == GetExcludeTime().size() + 1;
|
||||
}
|
||||
|
||||
bool TimeTable::AddExcludeTime(osmoh::Timespan const & span)
|
||||
|
|
Loading…
Add table
Reference in a new issue