| 550 | } |
| 551 | |
| 552 | bool CsvGrid::isToBeDeleted(int R, int C) { |
| 553 | // printf("isToBeDeleted: %d,%d\n", R, C); |
| 554 | if( delHighlightType ) { |
| 555 | // delete row(s) |
| 556 | if( R >= delHighlightStart && R <= delHighlightEnd ) { |
| 557 | return true; |
| 558 | } |
| 559 | } else { |
| 560 | // delete col(s) |
| 561 | if( C >= delHighlightStart && C <= delHighlightEnd ) { |
| 562 | return true; |
| 563 | } |
| 564 | } |
| 565 | return false; |
| 566 | } |
| 567 | |
| 568 | void CsvGrid::biggerFont() { |
| 569 | DEBUG_PRINTF("#### CsvGrid::biggerFont\n"); |
nothing calls this directly
no outgoing calls
no test coverage detected