| 379 | } |
| 380 | |
| 381 | void DumpSectionGui::updateCheckState() |
| 382 | { |
| 383 | PeSection * pesection; |
| 384 | |
| 385 | for (size_t i = 0; i < sectionList.size(); i++) |
| 386 | { |
| 387 | pesection = (PeSection *)ListSectionSelect.GetItemData((int)i); |
| 388 | pesection->isDumped = ListSectionSelect.GetCheckState((int)i) == TRUE; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | void DumpSectionGui::selectOrDeselectAll() |
| 393 | { |
nothing calls this directly
no outgoing calls
no test coverage detected