reset all selections
| 160 | |
| 161 | // reset all selections |
| 162 | void resetselections() |
| 163 | { |
| 164 | sels.shrink(0); |
| 165 | } |
| 166 | |
| 167 | COMMANDF(select, "iiii", (int *x, int *y, int *xs, int *ys) { resetselections(); addselection(*x, *y, *xs, *ys, -999); }); |
| 168 | COMMANDF(addselection, "iiii", (int *x, int *y, int *xs, int *ys) { addselection(*x, *y, *xs, *ys, -999); }); |
no test coverage detected