(self, emitter, value, table)
| 65 | return wid |
| 66 | |
| 67 | def on_row_count_change(self, emitter, value, table): |
| 68 | table.set_row_count(int(value)) |
| 69 | |
| 70 | def on_column_count_change(self, emitter, value, table): |
| 71 | table.set_column_count(int(value)) |
nothing calls this directly
no test coverage detected