[Java-gnome-developer] ListStore and null in String column
Brought to you by:
afcowie
From: Damian M. <da...@sp...> - 2006-03-06 09:35:26
|
I wanted to set value to null in a column of ListStore but noticed it is actually not null but an empty String. After investigating the problem I found this : in org.gnu.glib.Value public void setString( String value) { if (value == null) value = ""; g_value_set_string(handle, value); } Is this normal? And what about setting the null value ? |