Fixed problem with void function trying to return a value.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8566 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano 2011-04-06 18:32:45 +00:00
parent 0c02f2dabd
commit f76a1522e8

View File

@ -974,7 +974,7 @@ int Fl_PostScript_Graphics_Driver::descent() {
}
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);
}