[Java-gnome-developer] Patch to complete CellRendererToggle events
Brought to you by:
afcowie
From: Tiago C. <cog...@li...> - 2003-08-05 21:33:39
|
I've completed the implementation of CellRendererToggle events related issues. I am using this method to accept the user's input: public void cellRendererToggleEvent(CellRendererToggleEvent e) { final TreeIter i = list.getIter(e.getIndex()); list.setValue(i, dataExtract, !list.getValue(i, dataExtract)); } Do you know why when the user clicks on one of the checkbuttons it shows this warning message? GLib-GObject-WARNING **: gvalue.c:86: cannot initialize GValue with type `gboolean', the value has already been initialized as `gboolean' I hope you find the patch and classes helpfull, i am using them right now. Tiago Cogumbreiro |