DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New] Link: http://www.fltk.org/str.php?L2539 Version: 1.3-current Additions: I didn't see the '-W' part in your assumption, but this is correct, we don't use -W (note that -W is deprecated and should be -Wextra with current gcc compilers). -Wextra adds a lot of additional warnings, some of which are simply annoying and false positives (e.g. unused parameters of (virtual) methods that are intended to be overridden in derived classes). I didn't comment on other code problems that might exist in your code, unless I added some special comments. My only goal was to make it compile and see whether there are the mentioned 'cast void*' problems. You shouldn't use Fl_Timer, this is deprecated. Use Fl::add_timeout() etc. instead. I believe that ktui.run() is questionable code and should probable be implemented different, but I didn't look very closely at the involved code. The final "while (Fl::wait())" loop should probably be replaced by a simple "Fl::run();" statement. Link: http://www.fltk.org/str.php?L2539 Version: 1.3-current _______________________________________________ fltk-bugs mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-bugs
