Displaying 2 results from an estimated 2 matches for "fillitems".
Did you mean:
allitems
2010 Apr 03
0
FXlistBox.fillItems() segmentation fault - Found Work-around
As my prior posts show, I was getting very random segmentation faults when repeatedly clearing items from a listbox and then repopulating the items. I was using the following statements:
mylistbox.clearItems()
mylistbox.fillItems(new_list)
This would work for awhile, but after enough iterations of clearing and replacing the items in the listbox it would segmentation faults at the .fillItems call.
I found a workaround. If instead, I do:
mylistbox.clearItems()
new_list.each { |item| mylistbox.appendItem(item) }
the app w...
2012 Mar 08
5
FXRuby 1.6.23 released
...on not allowed while garbage collection'' bug
* Fix clipboard handling on windows
* Add missing namespace qualifier to FXSEL in FXAccelTable
* Fix GC bug in FXAccelTable
* Fix double free in FXMemoryStream#giveBuffer
* Fix invalid memory access in typemap to zero terminated FXchar*
(such as fillItems methods)
* Fix FXApp#addInput for Ruby 1.9 on Linux
* Fix "ruby_code case not handled: Regexp" issue with newer rubygems
--
Regards,
Lars