(col int)
| 234 | } |
| 235 | |
| 236 | func (m *reflectTableModel) ColumnSortable(col int) bool { |
| 237 | if sorter, ok := m.dataSource.(Sorter); ok { |
| 238 | return sorter.ColumnSortable(col) |
| 239 | } |
| 240 | |
| 241 | return true |
| 242 | } |
| 243 | |
| 244 | func (m *reflectTableModel) SortChanged() *Event { |
| 245 | if sorter, ok := m.dataSource.(Sorter); ok { |
nothing calls this directly
no test coverage detected