| 791 | } |
| 792 | |
| 793 | bool Grid::DeleteCols(int pos, int numCols, bool updateLabels) |
| 794 | { |
| 795 | bool res = wxGrid::DeleteCols(pos, numCols, updateLabels); |
| 796 | |
| 797 | mAx->TableUpdated(); |
| 798 | |
| 799 | return res; |
| 800 | } |
| 801 | |
| 802 | GridAx::GridAx(const FormatterContext& context, Grid* grid) |
| 803 | : WindowAccessible(grid->GetGridWindow()) |
nothing calls this directly
no test coverage detected