STR #527: Returning value from void function...

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3818 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2004-09-11 18:06:29 +00:00
parent 0f61ac6bf0
commit d0aebb9e46
3 changed files with 9 additions and 9 deletions

View File

@ -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 $".
//

View File

@ -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 $".
//

View File

@ -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 $"
//