RowDeleted tells any Tables associated with m that the row at index index has been deleted. You call this function when the number of rows in your model has changed; after calling it, NumRows should returm the new row count.
(index int)
| 221 | // number of rows in your model has changed; after calling it, |
| 222 | // NumRows should returm the new row count. |
| 223 | func (m *TableModel) RowDeleted(index int) { |
| 224 | C.uiTableModelRowDeleted(m.m, C.int(index)) |
| 225 | } |
nothing calls this directly
no outgoing calls
no test coverage detected