Robert Nikander wrote: > Well I don't care too much about writing my own TreeModel. Is there > another way to put a tree in the GUI short of going back to .0.6.8? > What about gtk.TreeStore? > > I tried: > > ts = gtk.TreeStore(1, gobject.TYPE_STRING)
get rid of the 1. The TreeStore constructor takes a variable number of arguments giving the column types (no column count as the first arg). The fact that it accepted 1 as an arg is an error. James. -- Email: [EMAIL PROTECTED] WWW: http://www.daa.com.au/~james/ _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk
