| 218 | } |
| 219 | |
| 220 | bool ScheduleRule_Impl::setApplySunday(bool applySunday) { |
| 221 | bool result = false; |
| 222 | if (applySunday) { |
| 223 | result = setString(OS_Schedule_RuleFields::ApplySunday, "Yes"); |
| 224 | } else { |
| 225 | result = setString(OS_Schedule_RuleFields::ApplySunday, "No"); |
| 226 | } |
| 227 | OS_ASSERT(result); |
| 228 | return result; |
| 229 | } |
| 230 | |
| 231 | bool ScheduleRule_Impl::setApplyMonday(bool applyMonday) { |
| 232 | bool result = false; |
no outgoing calls