Esempio n. 1
0
File: icon.go Progetto: Archs/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
}
Esempio n. 2
0
// Dispose releases the operating system resources associated with the Icon.
func (i *Icon) Dispose() error {
	if i.isStock || i.hIcon == 0 {
		return nil
	}

	if !win.DestroyIcon(i.hIcon) {
		return lastError("DestroyIcon")
	}

	i.hIcon = 0

	return nil
}
Esempio n. 3
0
func (cc customCursor) Dispose() {
	win.DestroyIcon(win.HICON(cc.hCursor))
}