| 618 | } |
| 619 | |
| 620 | void ConfigItem::UpdateListBox(int index) { |
| 621 | ASSERT((index >= 0) && (index < m_lbCount)); |
| 622 | m_iCurrentValue = m_lbList[index]->GetSelectedIndex(); |
| 623 | if (m_iCallback) |
| 624 | (*m_iCallback)(m_iCurrentValue); |
| 625 | } |
| 626 | |
| 627 | void ConfigItem::UpdateYesNoButton(int index) { |
| 628 | ASSERT((index >= 0) && (index < m_bCount)); |
nothing calls this directly
no test coverage detected