| 1316 | } |
| 1317 | |
| 1318 | TextRanges TextDocument::getSelectionsSorted() const { |
| 1319 | auto selections( mSelection ); |
| 1320 | for ( auto& selection : selections ) |
| 1321 | selection.normalize(); |
| 1322 | return selections; |
| 1323 | } |
| 1324 | |
| 1325 | TextRange TextDocument::getSelectionIndex( const size_t& index, bool sort ) const { |
| 1326 | eeASSERT( index < mSelection.size() ); |
no test coverage detected