"Dugas, Alan" wrote:
> 
> Does anyone know if the text returned by gtk_clist_get_text() needs to be freed
> when done using it?  Thanks in advance to any who reply.

You can tell quite easily from looking at the gtk_clist_get_text()
code:

    *text = GTK_CELL_TEXT (clist_row->cell[column])->text;

i.e. it returns a pointer to the internal copy of text, so you
shouldn't free it.

Damon

_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to