예제 #1
0
파일: value.go 프로젝트: ziutek/glib
// Clears the current value in value and "unsets" the type,
func (v *Value) Unset() {
	C.g_value_unset(v.g())
}
예제 #2
0
파일: gtype.go 프로젝트: napsy/go-gtk3
func (self GValue) Free() {
	C.g_value_unset(self.value)
}
예제 #3
0
파일: glib.go 프로젝트: vvanpo/gotk3
func (v *Value) unset() {
	C.g_value_unset(v.native())
}
예제 #4
0
파일: gobj.go 프로젝트: hwch/go-gtk
// g_value_unset
func (this *Value) Unset() {
	C.g_value_unset(this.asC())
}