| 215 | } |
| 216 | |
| 217 | CheckGroup::EnabledState CheckGroup::effectiveCheckEnabledState(int index) const |
| 218 | { |
| 219 | EnabledState result = m_checksEnabledStates.at(index); |
| 220 | if (result == EnabledInherited) { |
| 221 | result = effectiveGroupEnabledState(); |
| 222 | } |
| 223 | return result; |
| 224 | } |
| 225 | |
| 226 | void CheckGroup::setGroupEnabledState(CheckGroup::EnabledState groupEnabledState) |
| 227 | { |
no test coverage detected