()
| 410 | } |
| 411 | |
| 412 | func (tvc *TableViewColumn) destroy() error { |
| 413 | width := tvc.Width() |
| 414 | |
| 415 | if win.FALSE == tvc.sendMessage(win.LVM_DELETECOLUMN, uintptr(tvc.indexInListView()), 0) { |
| 416 | return newError("LVM_DELETECOLUMN") |
| 417 | } |
| 418 | |
| 419 | tvc.width = width |
| 420 | |
| 421 | tvc.tv.updateLVSizes() |
| 422 | |
| 423 | return nil |
| 424 | } |
| 425 | |
| 426 | func (tvc *TableViewColumn) update() error { |
| 427 | if tvc.tv == nil || !tvc.visible { |
no test coverage detected