Exemplo n.º 1
0
Arquivo: slist.go Projeto: gotk3/gotk3
// Free is a wrapper around g_slist_free().
func (v *SList) Free() {
	C.g_slist_free(v.native())
	v.list = nil
}
Exemplo n.º 2
0
Arquivo: glib.go Projeto: leif/go-gtk
func (v SList) Free() {
	C.g_slist_free(v.GSList)
}
Exemplo n.º 3
0
func (self *GSList) Free() {
	C.g_slist_free(self.object)
}