| 34 | int end() const { return qMax(caret, anchor); } |
| 35 | int length() const { return end() - start(); } |
| 36 | void set(int pos) { anchor = caret = pos; } |
| 37 | void offset(int offset) { anchor += offset; caret += offset; } |
| 38 | }; |
| 39 |
no outgoing calls
no test coverage detected