Re: Nearly there with wxEuphoria and wxIDE
- Posted by ghaberek (admin) Jun 12, 2011
- 1497 views
There was definitely a bug in check_file_modified(). I've corrected the problem and committed it the SVN.
You can fix it yourself easily. Just go to line 991 in wxide.exw and replace these two lines:
sequence loaded = file_last_modified[the_file] if compare( changed, loaded ) = 1 then
With this:
object loaded = file_last_modified[the_file] if sequence( loaded ) and compare( changed, loaded ) = 1 then
-Greg