| 773 | } |
| 774 | |
| 775 | bool Grid::InsertCols(int pos, int numCols, bool updateLabels) |
| 776 | { |
| 777 | bool res = wxGrid::InsertCols(pos, numCols, updateLabels); |
| 778 | |
| 779 | mAx->TableUpdated(); |
| 780 | |
| 781 | return res; |
| 782 | } |
| 783 | |
| 784 | bool Grid::AppendCols(int numCols, bool updateLabels) |
| 785 | { |
nothing calls this directly
no test coverage detected