From 1150141ead2cf0920624833e37536da9afd9e089 Mon Sep 17 00:00:00 2001 From: Bill Spitzak Date: Wed, 21 Jun 2000 17:36:36 +0000 Subject: Changed the name of the new function from "add_interval_timeout" to "repeat_timeout", which is shorter and more accurately describes what it does. GLUT_STROKE_*_ROMAN in glut.h are defined as 0,1 on WIN32 to match the glut header files there. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1232 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/Fl.cxx b/src/Fl.cxx index a6c17ae77..5ea46e793 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl.cxx,v 1.24.2.29 2000/06/20 15:20:34 carl Exp $" +// "$Id: Fl.cxx,v 1.24.2.30 2000/06/21 17:36:36 bill Exp $" // // Main event handling code for the Fast Light Tool Kit (FLTK). // @@ -198,10 +198,10 @@ int Fl::ready() { void Fl::add_timeout(double t, Fl_Timeout_Handler cb, void *v) { elapse_timeouts(); - add_interval_timeout(t, cb, v); + repeat_timeout(t, cb, v); } -void Fl::add_interval_timeout(double t, Fl_Timeout_Handler cb, void *v) { +void Fl::repeat_timeout(double t, Fl_Timeout_Handler cb, void *v) { if (numtimeouts >= timeout_array_size) { timeout_array_size = 2*timeout_array_size+1; @@ -729,5 +729,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.29 2000/06/20 15:20:34 carl Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.30 2000/06/21 17:36:36 bill Exp $". // -- cgit v1.2.3