| 29 | int anchor; |
| 30 | |
| 31 | Selection(int caret, int anchor) : caret(caret), anchor(anchor) {} |
| 32 | |
| 33 | int start() const { return qMin(caret, anchor); } |
| 34 | int end() const { return qMax(caret, anchor); } |
nothing calls this directly
no outgoing calls
no test coverage detected