| 24 | } |
| 25 | |
| 26 | void setItemCheckState(int i, Qt::CheckState state) { |
| 27 | QListWidgetItem* it = item(i); |
| 28 | if (it) it->setCheckState(state); |
| 29 | } |
| 30 | |
| 31 | Qt::CheckState itemCheckState(int i) { |
| 32 | QListWidgetItem* it = item(i); |
nothing calls this directly
no outgoing calls
no test coverage detected