| 200 | } |
| 201 | |
| 202 | CheckGroup::EnabledState CheckGroup::effectiveGroupEnabledState() const |
| 203 | { |
| 204 | EnabledState result = m_groupEnabledState; |
| 205 | if (result == EnabledInherited) { |
| 206 | Q_ASSERT(m_superGroup); |
| 207 | result = m_superGroup->effectiveGroupEnabledState(); |
| 208 | } |
| 209 | return result; |
| 210 | } |
| 211 | |
| 212 | CheckGroup::EnabledState CheckGroup::checkEnabledState(int index) const |
| 213 | { |
no outgoing calls
no test coverage detected