MCPcopy Create free account
hub / github.com/Tablecruncher/tablecruncher / isToBeDeleted

Method isToBeDeleted

src/csvgrid.cpp:552–566  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

550}
551
552bool 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
568void CsvGrid::biggerFont() {
569 DEBUG_PRINTF("#### CsvGrid::biggerFont\n");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected