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