| 358 | |
| 359 | |
| 360 | void PluginListView::setAllCheckState(BOOL checked) |
| 361 | { |
| 362 | int size = ListView_GetItemCount(_hListView); |
| 363 | |
| 364 | for (int position = 0; position < size; position++) |
| 365 | { |
| 366 | ListView_SetCheckState(_hListView, position, checked); |
| 367 | } |
| 368 | |
| 369 | } |
| 370 | |
| 371 | void PluginListView::selectAll() |
| 372 | { |
nothing calls this directly
no outgoing calls
no test coverage detected