| 600 | } |
| 601 | |
| 602 | AlignedTableCell *Table::getCellRef () |
| 603 | { |
| 604 | core::Widget *child; |
| 605 | |
| 606 | for (int row = 0; row <= numRows; row++) { |
| 607 | int n = curCol + row * numCols; |
| 608 | if (childDefined (n)) { |
| 609 | child = children->get(n)->cell.widget; |
| 610 | if (child->instanceOf (AlignedTableCell::CLASS_ID)) |
| 611 | return (AlignedTableCell*)child; |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | return NULL; |
| 616 | } |
| 617 | |
| 618 | const char *Table::getExtrModName (ExtrMod mod) |
| 619 | { |
no test coverage detected