Fix CanAddExcludeTime.

This commit is contained in:
Sergey Magidovich 2015-12-10 14:23:23 +03:00 committed by Sergey Yershov
parent c7dcbc9d0c
commit 84fff463df

View file

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