Re: EuGTK - puzzling Gtk errors
- Posted by irv Oct 07, 2010
- 1386 views
There's nothing wrong with the code above. This message is most likely due to sending the liststore more columns of data than it has been set up to hold. You need to look where you're adding data to the store:
for i = 1 to length(var) do -- load the list store with data LV:Row(lv,store,var[i]) end for
Easy way to check is to limit or slice the sequences being added, i.e. var[i][1..4] for a view that's supposed to hold 4 columns.