| 345 | |
| 346 | |
| 347 | void PluginListView::removeSelected() |
| 348 | { |
| 349 | int size = ListView_GetItemCount(_hListView); |
| 350 | |
| 351 | for (int position = size - 1; position >= 0; position--) |
| 352 | { |
| 353 | if (ListView_GetCheckState(_hListView, position)) |
| 354 | ListView_DeleteItem(_hListView, position); |
| 355 | } |
| 356 | |
| 357 | } |
| 358 | |
| 359 | |
| 360 | void PluginListView::setAllCheckState(BOOL checked) |
no outgoing calls
no test coverage detected