summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl E. Thompson <devel-fltk@carlthompson.net>2000-06-20 15:20:34 +0000
committerCarl E. Thompson <devel-fltk@carlthompson.net>2000-06-20 15:20:34 +0000
commit8dabd7171d16ed7341f7f095edb30fd62bc78647 (patch)
treefb5c94780ff20776bbceac77f8e56b2dc355283a /src
parent823b1f8460c82110ff0cd28c94684d413d955ad7 (diff)
Fix for Cygwin.
Carl git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1224 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index c8584707e..a6c17ae77 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl.cxx,v 1.24.2.28 2000/06/20 05:47:36 bill Exp $"
+// "$Id: Fl.cxx,v 1.24.2.29 2000/06/20 15:20:34 carl Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
@@ -223,7 +223,7 @@ void Fl::add_interval_timeout(double t, Fl_Timeout_Handler cb, void *v) {
numtimeouts++;
}
-int Fl::has_timeout(void (*cb)(void *), void *v) {
+int Fl::has_timeout(Fl_Timeout_Handler cb, void *v) {
for (int i=0; i<numtimeouts; i++)
if (timeout[i].cb == cb && timeout[i].arg==v) return 1;
return 0;
@@ -729,5 +729,5 @@ void Fl_Window::flush() {
}
//
-// End of "$Id: Fl.cxx,v 1.24.2.28 2000/06/20 05:47:36 bill Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.29 2000/06/20 15:20:34 carl Exp $".
//