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