summaryrefslogtreecommitdiff
path: root/src/fl_font_x.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2004-09-11 18:06:29 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2004-09-11 18:06:29 +0000
commitd0aebb9e464b5d93fd1fd484a243a9582a65b102 (patch)
treeb515d57cc5eeb626c605c7dcde606a68c836371f /src/fl_font_x.cxx
parent0f61ac6bf0d98ffa58bd95770f8f2b478dbef155 (diff)
STR #527: Returning value from void function...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3818 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_font_x.cxx')
-rw-r--r--src/fl_font_x.cxx6
1 files changed, 3 insertions, 3 deletions
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 $".
//