From d0aebb9e464b5d93fd1fd484a243a9582a65b102 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sat, 11 Sep 2004 18:06:29 +0000 Subject: STR #527: Returning value from void function... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3818 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_font_win32.cxx | 6 +++--- src/fl_font_x.cxx | 6 +++--- src/fl_font_xft.cxx | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src') 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 $" // -- cgit v1.2.3