| 505 | |
| 506 | |
| 507 | std::vector<int> CsvGrid::getSelection() { |
| 508 | DEBUG_PRINTF("#### CsvGrid::getSelection\n"); |
| 509 | int s_left, s_top, s_right, s_bottom; |
| 510 | get_selection(s_top, s_left, s_bottom, s_right); |
| 511 | return {s_top, s_left, s_bottom, s_right}; |
| 512 | } |
| 513 | |
| 514 | |
| 515 |
no outgoing calls
no test coverage detected