diff --git a/src/fl_font_win32.cxx b/src/fl_font_win32.cxx index de344289a..4b21648aa 100644 --- a/src/fl_font_win32.cxx +++ b/src/fl_font_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_font_win32.cxx,v 1.9.2.3.2.8 2004/09/09 21:34:47 matthiaswm Exp $" +// "$Id: fl_font_win32.cxx,v 1.9.2.3.2.9 2004/09/11 18:06:29 easysw Exp $" // // WIN32 font selection routines for the Fast Light Tool Kit (FLTK). // @@ -159,9 +159,9 @@ void fl_draw(const char* str, int n, int x, int y) { } void fl_draw(const char* str, int n, float x, float y) { - return fl_draw(str, n, (int)x, (int)y); + fl_draw(str, n, (int)x, (int)y); } // -// End of "$Id: fl_font_win32.cxx,v 1.9.2.3.2.8 2004/09/09 21:34:47 matthiaswm Exp $". +// End of "$Id: fl_font_win32.cxx,v 1.9.2.3.2.9 2004/09/11 18:06:29 easysw Exp $". // diff --git a/src/fl_font_x.cxx b/src/fl_font_x.cxx index 4dd3b783b..61df176db 100644 --- a/src/fl_font_x.cxx +++ b/src/fl_font_x.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_font_x.cxx,v 1.10.2.7 2004/09/09 21:34:47 matthiaswm Exp $" +// "$Id: fl_font_x.cxx,v 1.10.2.8 2004/09/11 18:06:29 easysw Exp $" // // Standard X11 font selection code for the Fast Light Tool Kit (FLTK). // @@ -254,9 +254,9 @@ void fl_draw(const char* str, int n, int x, int y) { } void fl_draw(const char* str, int n, float x, float y) { - return fl_draw(str, n, (int)x, (int)y); + fl_draw(str, n, (int)x, (int)y); } // -// End of "$Id: fl_font_x.cxx,v 1.10.2.7 2004/09/09 21:34:47 matthiaswm Exp $". +// End of "$Id: fl_font_x.cxx,v 1.10.2.8 2004/09/11 18:06:29 easysw Exp $". // diff --git a/src/fl_font_xft.cxx b/src/fl_font_xft.cxx index a37e4868c..6cced3821 100644 --- a/src/fl_font_xft.cxx +++ b/src/fl_font_xft.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_font_xft.cxx,v 1.4.2.15 2004/09/09 21:34:47 matthiaswm Exp $" +// "$Id: fl_font_xft.cxx,v 1.4.2.16 2004/09/11 18:06:29 easysw Exp $" // // Xft font code for the Fast Light Tool Kit (FLTK). // @@ -255,9 +255,9 @@ void fl_draw(const char *str, int n, int x, int y) { } void fl_draw(const char* str, int n, float x, float y) { - return fl_draw(str, n, (int)x, (int)y); + fl_draw(str, n, (int)x, (int)y); } // -// End of "$Id: fl_font_xft.cxx,v 1.4.2.15 2004/09/09 21:34:47 matthiaswm Exp $" +// End of "$Id: fl_font_xft.cxx,v 1.4.2.16 2004/09/11 18:06:29 easysw Exp $" //