Exemplo n.º 1
0
Arquivo: icon.go Projeto: wangch/walk
// Dispose releases the operating system resources associated with the Icon.
func (i *Icon) Dispose() {
	if i.isStock || i.hIcon == 0 {
		return
	}

	win.DestroyIcon(i.hIcon)
	i.hIcon = 0
}
Exemplo n.º 2
0
func (cc customCursor) Dispose() {
	win.DestroyIcon(win.HICON(cc.hCursor))
}