> I'm trying to resurrect an FLTK app, cross compiled with MINGW, the compiler > is > based on a newer version of GCC: (4.4.2). The newer compiler barfs on > Fl_JPEG_Image.cxx, line 158: > > dinfo.quantize_colors = (boolean)FALSE; > > Which I believe should be: > > dinfo.quantize_colors = (bool) FALSE; > > (or words to that effect). Am I nuts? Is my development environment hosed? > Or > should I file an STR? > > Jim
I don't think "boolean" has ever been part of C or C++. Maybe it was a macro in some ancient version of fltk? Anyway, it it's going to get fixed, dinfo.quantize_colors = false would be an attractive alternative. Best, Stan _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

