()
| 1861 | } |
| 1862 | |
| 1863 | func (tv *TableView) applyImageList() { |
| 1864 | win.SendMessage(tv.hwndFrozenLV, win.LVM_SETIMAGELIST, win.LVSIL_SMALL, uintptr(tv.hIml)) |
| 1865 | win.SendMessage(tv.hwndNormalLV, win.LVM_SETIMAGELIST, win.LVSIL_SMALL, uintptr(tv.hIml)) |
| 1866 | } |
| 1867 | |
| 1868 | func (tv *TableView) disposeImageListAndCaches() { |
| 1869 | if tv.hIml != 0 && !tv.usingSysIml { |
no test coverage detected