Re: [fltk.development] [RFE] STR#2076:Patchforfl_text_extentsmechanism in fltk-1.3.x

2008-12-11 Thread Fabien Costantini
I'm sort of wondering which compiler variants do/don't=20 allow that style of usage... =20 Me too. Which compiler did _not_ like it? This one complained: $ gcc -v Reading specs from d:/MinGW/bin/../lib/gcc/mingw32/3.4.2/specs VC6 is not happy too, and has another problem compiling

Re: [fltk.development] [RFE]STR#2076:Patchforfl_text_extentsmechanism in fltk-1.3.x

2008-12-11 Thread Greg Ercolano
Fabien Costantini wrote: Yes I'm afraid I do, look at the diff file below needed for fixing current svn ... - if (c) return fl_text_extents(c, strlen(c), dx, dy, w, h); [..] + if (c) fl_text_extents(c, strlen(c), dx, dy, w, h); Interesting.. if I gather the gist of the patch