Free frees m. It is an error to Free any models associated with a Table.
()
| 195 | // Free frees m. It is an error to Free any models associated with a |
| 196 | // Table. |
| 197 | func (m *TableModel) Free() { |
| 198 | delete(models, m.m) |
| 199 | delete(modelhandlers, m.m) |
| 200 | C.uiFreeTableModel(m.m) |
| 201 | } |
| 202 | |
| 203 | // RowInserted tells any Tables associated with m that a new row |
| 204 | // has been added to m at index index. You call this method when |
nothing calls this directly
no outgoing calls
no test coverage detected