| 1013 | } |
| 1014 | |
| 1015 | bool Model_Impl::setCalendarYear(int calendarYear) { |
| 1016 | if (!m_cachedYearDescription) { |
| 1017 | m_cachedYearDescription = this->model().getUniqueModelObject<YearDescription>(); |
| 1018 | } |
| 1019 | OS_ASSERT(m_cachedYearDescription); |
| 1020 | return m_cachedYearDescription->setCalendarYear(calendarYear); |
| 1021 | } |
| 1022 | |
| 1023 | void Model_Impl::resetCalendarYear() { |
| 1024 | if (!m_cachedYearDescription) { |