Beispiel #1
0
// Clears the current value in value and "unsets" the type,
func (v *Value) Unset() {
	C.g_value_unset(v.g())
}
Beispiel #2
0
func (self GValue) Free() {
	C.g_value_unset(self.value)
}
Beispiel #3
0
func (v *Value) unset() {
	C.g_value_unset(v.native())
}
Beispiel #4
0
// g_value_unset
func (this *Value) Unset() {
	C.g_value_unset(this.asC())
}