Author: greg.ercolano
Date: 2011-04-06 11:32:45 -0700 (Wed, 06 Apr 2011)
New Revision: 8566
Log:
Fixed problem with void function trying to return a value.
Modified:
branches/branch-1.3/src/Fl_PostScript.cxx
Modified: branches/branch-1.3/src/Fl_PostScript.cxx
===================================================================
--- branches/branch-1.3/src/Fl_PostScript.cxx 2011-04-06 13:43:09 UTC (rev
8565)
+++ branches/branch-1.3/src/Fl_PostScript.cxx 2011-04-06 18:32:45 UTC (rev
8566)
@@ -974,7 +974,7 @@
}
void Fl_PostScript_Graphics_Driver::text_extents(const char *c, int n, int
&dx, int &dy, int &w, int &h) {
- return Fl_Display_Device::display_device()->driver()->text_extents(c, n, dx,
dy, w, h);
+ Fl_Display_Device::display_device()->driver()->text_extents(c, n, dx, dy, w,
h);
}
_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit